How can I use a floating point number with input command?

28 次查看(过去 30 天)
L = 10
a = input('Enter the location of the force (0 - %0.2f meters): ');
How can I get the prompt to output as 'Enter the location of the force (0 - 10.00 meters): '.

采纳的回答

Stephen23
Stephen23 2021-10-12
L = 10;
S = sprintf('Enter the location of the force (0 - %0.2f meters): ',L);
a = input(S);
  1 个评论
Gavin Thompson
Gavin Thompson 2021-10-12
Ahh that makes sense, I tried using sprintf before but I put it on the outside so I got an error. Thank you!

请先登录,再进行评论。

更多回答(0 个)

类别

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

标签

Community Treasure Hunt

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

Start Hunting!

Translated by