Create a 2d matrix with two nested cycle

3 次查看(过去 30 天)
Hi all,
I am trying to create a 2d matrix with two nested cycle. My code is really complex, so I have written a very simple version of the problem. The scope of this simplified code was to obtain
[1 2 3 4
1 2 3 4
1 2 3 4
1 2 3 4]
So I have written a code like this
A=[]
B=[]
for x=1:1:4
for y=1:1:4
B=[B;y]
end
A=[A,B]
end
The problem seems to me that the nested cycle continue to append the value of y also once the cycle is ended. So when I do A=[A,B], I have the error that the array concatenated are not consistent.
I hope you can help me.
PS I know that this example of matrix can be obtained very easily, I want to obtain it using the nested cycles.

采纳的回答

Rik
Rik 2020-9-1
Dynamically growing arrays is a bad idea. You should probably provide more details about your actual goal, because this problem definition doesn't make sense.
A=[];
for x=1:1:4
B=[];%reset B every loop of A
for y=1:1:4
B=[B;y];
end
A=[A,B];
end
A

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by