How would I improve my euler code?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Raiven Balderas
am 20 Feb. 2018
Bearbeitet: Jim Riggs
am 21 Feb. 2018
How can i improve my euler code? Code is attached ... I believe i have to improve it by using trapezoids instead of rectangles..How do i do this ? Can someone help
0 Kommentare
Akzeptierte Antwort
Jim Riggs
am 20 Feb. 2018
For trapezoidal integration, you use the average of two consecutive evaluations. This could be done by simply adding one line of code after the Euler calculation;
y(:,k+1) = (y(:,k+1) + y(:,k))*h/2
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!