Info
この質問は閉じられています。 編集または回答するには再度開いてください。
How do I show the variables the users' inputted in a disp or fprintf fucntion?
2 ビュー (過去 30 日間)
古いコメントを表示
I'm kind of new to MATLAB, how can I show the users' inputted data on a disp or fprintf function?
4 件のコメント
Walter Roberson
2020 年 9 月 14 日
disp() only accepts one parameter. But you can
disp(['Your answer is: ', num2str(ans)])
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!