I have some problem when plotting the graph, anyone can help? Thanks
1 回表示 (過去 30 日間)
古いコメントを表示
Erwin Koman
2015 年 6 月 27 日
コメント済み: Erwin Koman
2015 年 6 月 27 日
This is my code
for x = -10:10
y = 2^(0.4*x)+5
plot(x,y,'g')
end
0 件のコメント
採用された回答
Salaheddin Hosseinzadeh
2015 年 6 月 27 日
編集済み: Salaheddin Hosseinzadeh
2015 年 6 月 27 日
Hi,
You need to store y first.
x = -10:10;
for i = 1:numel(x)
y(i) = 2^(0.4*x(i))+5
end
plot(x,y,'g')
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Loops and Conditional Statements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!