I want help solving differential equations

1 vue (au cours des 30 derniers jours)
kubel
kubel le 1 Déc 2022
Commenté : kubel le 1 Déc 2022
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);

Réponse acceptée

KSSV
KSSV le 1 Déc 2022
syms x y(x);
eqn = diff(y,x)==exp(x)/(2*y)
eqn(x) = 
sol = dsolve(eqn)
sol = 

Plus de réponses (0)

Produits


Version

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by