How to perform inverse between a page of a 3D matrix and a column vector without loops?

1 回表示 (過去 30 日間)
The matrix H looks like 9 x 2 x 14 and matrix A1 is 9 x1. I need to perform inversion between every page of H with A using mldivide so that output looks like 2 x 1 x14 matrix. No loops.
clear all;
close all;
load H.mat
load A1.mat

採用された回答

Steven Lord
Steven Lord 2023 年 1 月 11 日
Why do you insist to do this without looping? If you have been told "for loops in MATLAB are slow" that is not necessarily the truth anymore.
But in this particular case it is possible to use pagemldivide to accomplish this task.

その他の回答 (1 件)

Kevin Holly
Kevin Holly 2023 年 1 月 11 日
編集済み: Kevin Holly 2023 年 1 月 11 日
load H.mat
load A1.mat
size(H)
ans = 1×3
9 2 14
size(A1)
ans = 1×2
9 1
answer = H.\A1;
size(answer)
ans = 1×3
9 2 14
  3 件のコメント
Kevin Holly
Kevin Holly 2023 年 1 月 11 日
Ah, I see. I misread the output. So, you need to vectorize this:
load H.mat
load A1.mat
size(H)
ans = 1×3
9 2 14
size(A1)
ans = 1×2
9 1
for ii = 1:size(H,3)
answer(:,:,ii) =H(:,:,ii)\A1;
end
size(answer)
ans = 1×3
2 1 14
Kalasagarreddi Kottakota
Kalasagarreddi Kottakota 2023 年 1 月 11 日
Hi Kelly,
The output is correct, but I dont want to use a loop. Is there any possibility without looping?

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeMultidimensional Arrays についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by