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!