Borrar filtros
Borrar filtros

I want help solving differential equations

1 visualización (últimos 30 días)
kubel
kubel el 1 de Dic. de 2022
Comentada: kubel el 1 de Dic. de 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);

Respuesta aceptada

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

Más respuestas (0)

Productos


Versión

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by