Regarding calling of matrix outside for loop

조회 수: 2 (최근 30일)
Ravi mutturi
Ravi mutturi 2011년 9월 21일
Being non-expert in Matlab, I have a problem regarding calling a matrix outside for loop.
code:
for i=1:1:4
Mat = rand(2)
end
Output
Mat =
0.9644 0.6948
0.4325 0.7581
Mat =
0.4326 0.1098
0.6555 0.9338
Mat =
0.1875 0.7978
0.2662 0.4876
Mat =
0.7690 0.2729
0.3960 0.0372
Now i want a updated matrix which basically includes all the above four matrices as 2x8 matrix. I mean updated matrix = [Mat for i=1, Mat for i=2...upto i =4]
kindly help

채택된 답변

Harry MacDowel
Harry MacDowel 2011년 9월 21일
Combined = []
for i=1:1:4
Mat = rand(2);
Combined = [Combined;Mat];
end
  댓글 수: 2
Ravi mutturi
Ravi mutturi 2011년 9월 21일
worked perfect.
thanks
Harry MacDowel
Harry MacDowel 2011년 9월 21일
you're welcomed

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by