I need help using for and if for plotting a function.
Mostrar comentarios más antiguos
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)
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Visualization and Interpretability en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!