How to write ordinary differantial equations ?bvb
Ältere Kommentare anzeigen
F=@(x); dy=@(x,y); x0=; xn=; y= ;h= ;fprintf(‘x\t\t y (Euler)\t y(analytical)\n’); fprintf(‘%f\t %f\t %f\n’,x0,y,f(x0); for x=x0:h:xn-h.. y=y+dy(x,y)*h; x=x+h; fprintf(‘%f\t %f\t %f\n’,x,y,f(x)); end
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Introduction to Installation and Licensing finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!