User Input of Numerical Value
3 ビュー (過去 30 日間)
古いコメントを表示
Hi,
I am using:
x = input('Enter the detector x coordinate')
but now I want a user input each time the loop runs, in the following way:
for i=1, it should say: Enter the detector1 x coordinate
for i=2, it should say: Enter the detector2 x coordinate
...etc etc.
Please help.
Thanks!
0 件のコメント
採用された回答
Walter Roberson
2012 年 6 月 30 日
for K = 1 : 5
x(K) = input( sprintf('Enter the dectector%d x coordinate', K) );
end
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Animation についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!