Modify the input dialogue at every "for loop"?
10 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
SYED GILLANI
am 16 Okt. 2016
Bearbeitet: Image Analyst
am 14 Dez. 2019
Hello all. I am trying to make a program in which for every for loop I want to modify the input dialogue statement for example,
for i = 1:input1
for j =1:input1
input2=input('enter value of :' a[i,j] )
a(i,j)=input2;
end
end
Now here the string "enter the value of a(i,j)" so how should I write that statement so that I would get "enter the value a11" and for the next loop "enter the value a12" and so on?
Please reply ASAP!
1 Kommentar
Image Analyst
am 16 Okt. 2016
To format http://www.mathworks.com/matlabcentral/answers/13205#answer_18099 (I fixed it for you this time).
Akzeptierte Antwort
Image Analyst
am 16 Okt. 2016
Bearbeitet: Image Analyst
am 14 Dez. 2019
Use sprintf() to make up the string:
promptString = sprintf('Please enter the value of a(%d, %d) : ', i, j);
input2 = input(promptString) % User should enter a single number now.
a(i, j) = input2;
2 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Loops and Conditional Statements 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!