Using pagemtimes multiplying from left and right side

6 ビュー (過去 30 日間)
Morten Nissov
Morten Nissov 2021 年 5 月 3 日
回答済み: Felipe Padua 2022 年 8 月 29 日
I have a 3D array I need to multiply on left and right sides by a constant 3x3 matrix, take a cholesky decomposition and multiply it by a random vector, I am trying to avoid for loops. The arrays are P 6x6xN and F 3x6. The equivalent for loop multiplication is
for i=1:length(Pf)
w = chol(Fn*Pf(:,:,i)*Fn')*randn(3,1);
out(:,i) = out(:,i) + w;
end

回答 (1 件)

Felipe Padua
Felipe Padua 2022 年 8 月 29 日
You can use pagemtimes to perform both multiplications but, since chol accept only matrices (2D arrays) as arguments, you'll still need a loop. Try the code below:
n = size(Pf, 3);
aux = pagemtimes(Fn, Pf);
aux = pagemtimes(aux, Fn');
for i = 1:n
aux (:,:,i) = chol(aux(:,:,i));
end
aux = pagemtimes(aux, rand(3,1,n));
If you desire retrieve the steps taken, you may avoid overwriting the aux variable renaming the sucessive results as aux1, aux2 etc, or other names of your preference.

カテゴリ

Help Center および File ExchangeResizing and Reshaping Matrices についてさらに検索

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by