I am trying to create a 5x5 array. How will I achieve this by using a nested loop?
37 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
%%%%%Output should look like this:
A =
1 2 3 4 5 %b
2 4 6 8 10 %c
3 6 9 12 15 %d
4 8 12 16 20 %e
5 10 15 20 25 %f
%%%My code
while (g = b)
for a
(b;c;d;e;f)
fprinf('%d',a)
end
end
1 Kommentar
dpb
am 4 Nov. 2015
while (g = b)
Neither b nor g are defined prior to this statement; nor are any of the others...but even if were the logical operator is == not =
Antworten (2)
Luca Kolibius
am 12 Nov. 2016
How about
a=(1:25);
reshape(a,[5,5])'
?
2 Kommentare
Robert
am 4 Nov. 2015
The array you asked for can be created without a nested loop. Try:
(1:5)'*(1:5)
The enclosed statement, (1:5), creates the row vector [1 2 3 4 5]. The single quote in this context transposes the row vector (making it a column vector) and the matrix multiplication of the column and row vectors (in this order) gives you your matrix.
If I read between the lines in your question, I can guess that b, c, d, e, and f are already defined as 1x5 row vectors and you want to make a 5x5 matrix by stacking them on top of each other. In this case, try:
A = [b;c;d;e;f]
In MATLAB, vectors and matrices are enclosed in square brackets. Commas and/or spaces separate columns, and semicolons separate rows. So this code creates a new row for each of the variables b through f. Be careful: this will cause an error if the variables do not all have the same number of columns.
If your particular application requires loops for some reason that isn't apparent in your question, I recommend a for loop over a while loop.
0 Kommentare
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!