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

27 Ansichten (letzte 30 Tage)
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): '.

Akzeptierte Antwort

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

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Characters and Strings finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by