I want to plot z such that z(:,1)= [0;1]; but how do I implement that in this code
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
close all;
dt = 0.1;%time step
u1=1;
u2=2;
c = u2-u1;
u = sign(u2-u1);
z=u*c;
k=0.12;
m=2.21;%initial parameters
v=1;
a=1.4;
tend=1000;
t=0;
i=1
while (t < tend-2*dt & i<t)
vh=v(i)-dt*k*z(1,i)/ (2*m);
z(2,i) = z(1,i)+ dt*vh;
%a(i+1)= -k*z(i)/2;
v(i+1)= vh-dt*k*z(2,i)/ (2*m);% + dt*a(i+1)/2;
i = i+1;
t = t + dt
end
plot(z);
Réponses (0)
Voir également
Catégories
En savoir plus sur Graph and Network Algorithms dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!