how could i animate this?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
HADIMARGO
am 17 Dez. 2018
Kommentiert: madhan ravi
am 18 Dez. 2018
x=linspace(-5,5,1000);
a_n=2;
b_n=3;
l=10;
for n=1:1:10
for t=0:1:10
y=a_n*cos((n*pi*t)/l)+b_n*sin((n*pi*t)/l)*sin((n*pi*x)/l);
end
end
u=y;
plot(x,u)
3 Kommentare
madhan ravi
am 18 Dez. 2018
you need to know that there are several curves created in each loop iteration but you overwrite all the values and only the end values are saved in the last iteration
Akzeptierte Antwort
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Animation finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!