필터 지우기
필터 지우기

Extracting square matrices from another matrix

조회 수: 3 (최근 30일)
Fotaras Sitof
Fotaras Sitof 2015년 11월 27일
댓글: Fotaras Sitof 2015년 11월 27일
Hello,
I have a 7x273 matrix from which I want to extract 39 7x7 matrices to compute a product of matrix exponentials. For example: expm(A1*t)*expm(A2*t)*expm(A3*t)*....*expm(A39*t) where each matrix Ai has a size of 7x7. I can extract them individually but now I'm confused since I need a simultaneous extraction and multiplication. Any suggestions?
Thank you.

채택된 답변

Stephen23
Stephen23 2015년 11월 27일
편집: Stephen23 2015년 11월 27일
% fake input data:
t = 0.3;
A = rand(7,273);
%
C = mat2cell(A,7,7*ones(1,39));
Z = expm(C{1}*t);
for k = 2:39
Z = Z*expm(C{k}*t);
end
  댓글 수: 1
Fotaras Sitof
Fotaras Sitof 2015년 11월 27일
Thanks Stephen. mat2cell works perfect here.

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

추가 답변 (1개)

Stalin Samuel
Stalin Samuel 2015년 11월 27일
t = 0.2;%for example
tet = rand(7,273);%your matrix
a1 = tet(:,1:7);
n1 = 1;
n2 = 7;
a1 = tet(:,n1:n2);
prdt = ones(size(a1));
for n = 1:38
prdt =prdt*expm(a1*t);%product
n1 = n2+1;
n2 = n2+7;
a1 = tet(:,n1:n2);
end

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by