When I have a string variable, how can I make a fprintf display the entire string in one output?
3 ビュー (過去 30 日間)
古いコメントを表示
When I run the code at the bottom as part of a larger code, the output I get is something like:
-Name of the pool requested: R
-Name of the pool requested: a
-Name of the pool requested: m
-Name of the pool requested: p
If I put Ramp as the input. If I want the fprintf to display:
-Name of the pool requested: Ramp
How can I get it to do that?
pool = input("Name of the pool wanted:\n",'s');
fprintf("Name of the pool requested: %c\n",pool)
0 件のコメント
採用された回答
Image Analyst
2023 年 2 月 17 日
Try %s instead of %c:
pool = input("Name of the pool wanted:\n",'s');
fprintf("Name of the pool requested: %s\n",pool)
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Introduction to Installation and Licensing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!