I want help solving differential equations

1 view (last 30 days)
This question
my sol
syms x y(t);
dsolve (diff(x,y) == exp^x/2*y);
problem
An error occurred during the following: exp
Insufficient input arguments.
Error Occurred: untitled (Line 2)
dsolve (diff(x,y) == exp^x/2*y);

Accepted Answer

KSSV
KSSV on 1 Dec 2022
syms x y(x);
eqn = diff(y,x)==exp(x)/(2*y)
eqn(x) = 
sol = dsolve(eqn)
sol = 

More Answers (0)

Products


Release

R2022a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!