how to input multiple items given a prompt?

10 ビュー (過去 30 日間)
cgo
cgo 2018 年 9 月 19 日
編集済み: dpb 2018 年 9 月 19 日
So far I only have worked with prompts giving one numerical response. (For example, input number: 10). That's it. Right now, I want to work with multiple inputs in a prompt, store them, and use them later. For example:
Enter your favourite numbers: 10, 25, 34 (maybe more than this, or even less than this).
Please let me know how to do this.
Thanks

採用された回答

dpb
dpb 2018 年 9 月 19 日
編集済み: dpb 2018 年 9 月 19 日
You can input whatever you wish at the prompt as long as it's a valid ML expression.
>> input('?')
?[2, pi, sqrt(10)]
ans =
2.0000 3.1416 3.1623
>>
Of course, you need to give your users a clue as to what it is you're expecting from them! :)
And also be prepared to handle whatever it is they give you.
There are other input options besides just input to give more control over the interaction.
Look at inputdlg for example.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGraphics Objects についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by