how can i pass the values to an array?
2 ビュー (過去 30 日間)
古いコメントを表示
for i=1:10
j=i*5:
end
output will be:
5,
10,
......
50.
how can i pass these output values(5.....50) in an array?
0 件のコメント
採用された回答
Star Strider
2015 年 9 月 22 日
編集済み: Star Strider
2015 年 9 月 22 日
Change the ‘j’ assignment to:
j(i) = i*5;
その他の回答 (1 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!