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

1 visualización (últimos 30 días)
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

Respuesta aceptada

Steven Lord
Steven Lord el 11 de En. de 2023
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.

Más respuestas (1)

Kevin Holly
Kevin Holly el 11 de En. de 2023
Editada: Kevin Holly el 11 de En. de 2023
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 comentarios
Kevin Holly
Kevin Holly el 11 de En. de 2023
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 el 11 de En. de 2023
Hi Kelly,
The output is correct, but I dont want to use a loop. Is there any possibility without looping?

Iniciar sesión para comentar.

Categorías

Más información sobre Multidimensional Arrays en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by