Displaying a string using a variable inside a loop

2 views (last 30 days)
HI, I want to ask user for some values.
The prompt should be something like this:
Which is the number 1?:
Which is the number 2?:
Which is the number 3?:
...
The code is here:
for i=1:a
in=input('Wich is the number ' disp(i) '?:');
eval (['b' num2str(i) '=in' ';']);
end
But it dont allow me to use the disp() inside the input, any idea?

Accepted Answer

Azzi Abdelmalek
Azzi Abdelmalek on 31 Aug 2012
for i=1:a
in=input(['Wich is the number ' num2str(i) '?:']);
eval (['b' num2str(i) '=in' ';']);
end

More Answers (0)

Categories

Find more on Variables in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!