I have a simple question how do I save the outputs of my script to a vector

1 vue (au cours des 30 derniers jours)
for t = -5:.2:50
if (t > 0) && (t <= 10)
vel = 11*t^2 - 5*t;
elseif (t >= 10) && (t <= 20)
vel = 1100 - 5*t
elseif (t >= 20) && (t <= 30)
vel = 50*t + 2*((t-20)^2)
elseif t > 30
vel = 1520*exp(-0.2*(t-30))
else
vel = 0
end
end

Réponse acceptée

Birdman
Birdman le 25 Jan 2018
t = -5:.2:50;
for i=1:numel(t)
if (t(i) > 0) && (t(i) <= 10)
vel(i) = 11*t(i)^2 - 5*t(i);
elseif (t(i) >= 10) && (t(i) <= 20)
vel(i) = 1100 - 5*t(i)
elseif (t >= 20) && (t <= 30)
vel(i) = 50*t(i) + 2*((t(i)-20)^2)
elseif t(i) > 30
vel(i) = 1520*exp(-0.2*(t(i)-30))
else
vel(i) = 0
end
end

Plus de réponses (0)

Catégories

En savoir plus sur Feature Detection and Extraction dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by