summation of products of matrices

조회 수: 2 (최근 30일)
Pasquale Valentini
Pasquale Valentini 2022년 11월 4일
댓글: Daniel Neubauer 2022년 11월 7일
I would like so have a fast solution to this problem
where is an p x m matrices and S is a symmetric matrices p x p, where m and p are very large

답변 (1개)

Daniel Neubauer
Daniel Neubauer 2022년 11월 4일
편집: Daniel Neubauer 2022년 11월 4일
take a look at
is that what you need?
p=3;
m=4;
i=5;
E=ones(p,p,i);
A=rand(p,m,i);
Sum=sum(pagemtimes(pagemtimes(A,'C',E,'N'),A),3)
Sum = 4×4
16.1794 14.6014 11.9153 11.5921 14.6014 14.7036 11.2311 10.9738 11.9153 11.2311 9.4835 8.7488 11.5921 10.9738 8.7488 9.6928
  댓글 수: 4
Pasquale Valentini
Pasquale Valentini 2022년 11월 4일
thanks for your reply.
It is very useful, but it seems to me that using "pagemtimes" is not faster than using “For Loop Matlab"
Daniel Neubauer
Daniel Neubauer 2022년 11월 7일
I dont know if there is a fasther way then, sorry!

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

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by