How to create a matrix with matrices as elements? where the matrix A contains symbolic variables
조회 수: 3 (최근 30일)
이전 댓글 표시

댓글 수: 3
dpb
2022년 5월 14일
편집: dpb
2022년 5월 15일
Pretty much just write the terms in an array - the products are all 1x1 so the summations are as well.
You'll have to define what P is and have a routine that computes the number of terms to fill in the right number of zeros -- and it's certainly not unambiguous what might be the intermediary ... terms going from third row to last. It may be possible to infer from the context from which this was extracted, but not on its own.
채택된 답변
Voss
2022년 5월 14일
It may be useful to see the fact that, for matrices A, B, and C of the given sizes, the products C*B, C*A*B, C*A^2*B, etc., are all scalars, so any sum of those products is a scalar. Therefore, all those expressions are actually scalars, so it's not in fact a matrix of matrices like it seems to be at first glance.
Each of those scalars can be calculated in a for loop to perform the summation:
A = [1 2; 3 4];
B = [1; 2];
C = [1 2];
p = 7;
m = 5;
M = zeros(p,m);
for kk = 1:p % loop over rows
for jj = 1:m % loop over columns
for ii = 0:kk-jj % summation loop for element kk,jj
% note that kk<jj gives "for i = []", so this loop doesn't
% execute when kk<jj, and M(kk,jj) remains at 0.
% kk<jj corresponds to the upper triangular part of M,
% which should be all zeros, so that works out nicely.
M(kk,jj) = M(kk,jj) + C*A^ii*B;
end
end
end
M
댓글 수: 3
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Operators and Elementary Operations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!