I need help using for and if for plotting a function.
이전 댓글 표시
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)
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Visualization and Interpretability에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!