What does C(:,:,i)=[Q11 Q12 Q14;Q12 Q22 Q24;Q14 Q24 Q44]; signify?

조회 수: 1 (최근 30일)
S Priya
S Priya 2021년 9월 1일
댓글: Walter Roberson 2021년 9월 1일
What does C(:,:,i)=[Q11 Q12 Q14;Q12 Q22 Q24;Q14 Q24 Q44]; signify?

답변 (1개)

KSSV
KSSV 2021년 9월 1일
C(:,:,i)=[Q11 Q12 Q14;Q12 Q22 Q24;Q14 Q24 Q44];
In the above C, is 3D matrix initialized as 3*3*p matrix. Each matrix of C, should have a 3x3 matrix. The line says there is a loop (i is the index shown here), for the i'th idex in C, a 3x3 matrix is filled in C. The matrix in RHS is a 3X3 matrix and it's each value is denoted by Q11....Q44, where these values should be either calculated or initilaized.
  댓글 수: 2
S Priya
S Priya 2021년 9월 1일
편집: S Priya 2021년 9월 1일
Thank you sir.It basically means that...
for i=1:3
C(:,:,1) = [Q11 Q12 Q14;Q12 Q22 Q24;Q14 Q24 Q44]
So, what is the output of
C(:,:,2)=? and C(:,:,3)=?
Walter Roberson
Walter Roberson 2021년 9월 1일
If you only assign to C(:,:,1) inside the for loop, then after the for loop:
  • if C did not exist before the for loop, then C(:,:,2) does not exist
  • if C did exist before the for loop, but its size in the third dimension and all following dimensions was 1 before, then C(:,:,2) does not exist
  • if C did exist before the for loop, and at least one dimension from the third onward was 2 or more, then effectively C gets resized like reshape(C,size(C,1), size(C,2), []) and then (:,:,2) of the result would be extracted

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

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by