why its not work
1 回表示 (過去 30 日間)
古いコメントを表示
i used
n1=5;
for x=50:5:200;
y=2*pi*n1/x;
plot (x,y);
its show an empty plot
0 件のコメント
採用された回答
その他の回答 (1 件)
Azzi Abdelmalek
2016 年 8 月 17 日
編集済み: Azzi Abdelmalek
2016 年 8 月 17 日
If you want to do it with a for loop
n1=5;
for x=50:5:200;
y=2*pi*n1./x;
scatter(x,y);
hold on
end
参考
カテゴリ
Help Center および File Exchange で Log Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!