Use a variable in Request user input prompt.
1 回表示 (過去 30 日間)
古いコメントを表示
Emmanouil Barmpounakis
2015 年 7 月 9 日
コメント済み: Emmanouil Barmpounakis
2015 年 7 月 9 日
I am trying to use the Request User Input command with a changeable message for every iteration. For example:
1 prompt=sprintf('For file %f give the value for x',filename)
2 x = input(prompt)
However filename is a 1x23 char and I don't get the result I get. The code I use, treats filename as a
Any solutions?
2 件のコメント
採用された回答
Brendan Hamm
2015 年 7 月 9 日
編集済み: Brendan Hamm
2015 年 7 月 9 日
The identifier you are using in sprintf (%f) stands for floating point, but you want a char array so use the identifier %s.
>> filename = 'abcdef.csv';
>> prompt=sprintf('For file %s give the value for x',filename)
prompt =
For file abcdef.csv give the value for x
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で LaTeX についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!