Azzera filtri
Azzera filtri

I want help solving differential equations

1 visualizzazione (ultimi 30 giorni)
kubel
kubel il 1 Dic 2022
Commentato: kubel il 1 Dic 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);

Risposta accettata

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

Più risposte (0)

Prodotti


Release

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by