simple plotting in matlab
2 ビュー (過去 30 日間)
古いコメントを表示
x=1:1:30 h=70 y=h/x
i understand they are unequal in length but how would i plot it dividing 70 by x one at a time to plot
0 件のコメント
採用された回答
Azzi Abdelmalek
2014 年 4 月 4 日
編集済み: Azzi Abdelmalek
2014 年 4 月 4 日
x=1:1:30
h=70
y=h./x
plot(x,y)
4 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!