HOW TO SOLVE THIS FUNCTION?

how to solvethis problem by matlab?thanks
y'=-2y+2x^2+2x y(0)=1
y(0.5)=??

Risposte (1)

Andrei Bobrov
Andrei Bobrov il 28 Nov 2013
Modificato: Andrei Bobrov il 28 Nov 2013
Please read about dsolve :
doc dsolve
Your case:
syms x y(x)
yy = dsolve(diff(y) == -2*y + 2*x^2 + 2*x, y(0) == 1);
out = vpa(subs(yy,x,.5))

Questa domanda è chiusa.

Tag

Non è stata ancora inserito alcun tag.

Richiesto:

il 28 Nov 2013

Chiuso:

il 20 Ago 2021

Community Treasure Hunt

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

Start Hunting!

Translated by