Filter löschen
Filter löschen

input prompt

2 Ansichten (letzte 30 Tage)
Talaria
Talaria am 21 Aug. 2011
Kommentiert: John D'Errico am 6 Jul. 2019
how to make input function that displays text according to loop:
i.e. for i=1:30
g=input('enter "/i/"th line');
end
and it would display:
enter 1th line
enter 2th line
enter 3th line etc.....

Akzeptierte Antwort

Chaowei Chen
Chaowei Chen am 21 Aug. 2011
for i=1:30
g=input(['enter ' int2str(i) ' th line']);
end
  1 Kommentar
John D'Errico
John D'Errico am 6 Jul. 2019
+1. But to be picky ... you needed to write it to know that it should be '1st', '2nd', '3rd', etc. ;-)

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Environment and Settings finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by