When I have a string variable, how can I make a fprintf display the entire string in one output?

4 次查看(过去 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)

采纳的回答

Image Analyst
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 个)

类别

Help CenterFile Exchange 中查找有关 Characters and Strings 的更多信息

产品


版本

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by