I need help using for and if for plotting a function.
Afficher commentaires plus anciens
clc
clear
for e= 0:0.02/1071:0.02
if (e<0.01)
s(e)=100*e
elseif (e>0.01)
s(e)=75.3*e
end
end
plot(e,s)
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Visualization and Interpretability dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!