Store all iteration loop outputs in a matrix

clc;
a = 5;
b = 20;
for i = 1:10
j = (i + 25);
k = (j*b);
m =[i j k];
end
********************************
output:
m =
10 35 700
******************************************************************
Hi,
I am writing a program as mentioned above to store all iteration loop outputs in a matrix.
However, the output just displays the last iteration.
Could you please let me know the right code which is able to display all the iterations from 1 to 10.
Thank you very much

 Akzeptierte Antwort

Mischa Kim
Mischa Kim am 8 Jul. 2014
Bearbeitet: Mischa Kim am 8 Jul. 2014

16 Stimmen

UTS, use instead
m(i,:) = [i j k];
The output is an array m with 10 rows, 3 columns.

9 Kommentare

UTS
UTS am 8 Jul. 2014
Bearbeitet: UTS am 8 Jul. 2014
Your prompt response is greatly appreciated,
I tried but i got this error:
Subscripted assignment dimension mismatch.
Error in Untitled3 (line 7)
m(i,:) = [i j k];
Strange. Copy-paste
clc;
a = 5;
b = 20;
for i = 1:10
j = (i + 25);
k = (j*b);
m(i,:) = [i j k];
end
into the command window and execute.
UTS
UTS am 8 Jul. 2014
Thank you very much
but still getting an error message
Subscripted assignment dimension mismatch.
m =
1 26 520
2 27 540
3 28 560
4 29 580
5 30 600
6 31 620
7 32 640
8 33 660
9 34 680
10 35 700
***********************************************
Finally got the answer.
Thank you very much for your time and assistance,
Mischa Kim
Mischa Kim am 8 Jul. 2014
What was the issue?
Naeem Ullah
Naeem Ullah am 14 Apr. 2017
Mischa Kim, Sir, you got good skills in Matlab. I was facing a problem like that in Matlab code, I apply this it really works. Thank you very much.
Exactly what I was looking for as well. Thanks for posting this answer!
Durga Aryal
Durga Aryal am 2 Feb. 2018
How did you solve the problem of subscripted dimension mismatch?
Hey @durga aryal, you might be doing a mistake like if you haven't applied for loop then it will show exactly what you are asking for?!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Hilfe-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