Call a matrix in a matrix

조회 수: 2 (최근 30일)
Ellen
Ellen 2014년 2월 3일
댓글: Ellen 2014년 2월 3일
Can you define a matrix A (3x6) consisting of matrices B (3x3) and C (3x3) and then call these in such a way that
A = [ B ; C ]
A (1) = B and A (2) = C
Or will you always have to write A(1:3,:) to get B?

채택된 답변

Amit
Amit 2014년 2월 3일
편집: Amit 2014년 2월 3일
You can have cell like this:
B = rand(3);
C = rand(3);
A{1} = B;
A{2} = C;
  댓글 수: 1
Ellen
Ellen 2014년 2월 3일
Made my day! Thanks!

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by