how can i pass the values to an array?
古いコメントを表示
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?
採用された回答
その他の回答 (1 件)
Image Analyst
2015 年 9 月 22 日
Or get rid of the "for":
i=1:10;
j=i*5;
カテゴリ
ヘルプ センター および File Exchange で Get Started with MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!