User Input of Numerical Value

Hi,
I am using:
x = input('Enter the detector x coordinate')
but now I want a user input each time the loop runs, in the following way:
for i=1, it should say: Enter the detector1 x coordinate
for i=2, it should say: Enter the detector2 x coordinate
...etc etc.
Please help.
Thanks!

 Akzeptierte Antwort

Walter Roberson
Walter Roberson am 30 Jun. 2012

1 Stimme

for K = 1 : 5
x(K) = input( sprintf('Enter the dectector%d x coordinate', K) );
end

Weitere Antworten (0)

Kategorien

Mehr zu Mathematics finden Sie in Hilfe-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