Borrar filtros
Borrar filtros

how to preferentially compute vector products rather than matrix products

1 visualización (últimos 30 días)
When performing a multiplication operation between a matrix and a vector, it seems that MATLAB's default settings are to be executed from the left.
This method has a problem in that calculation time is too long when complex multi-term matrix operations are performed.
Is there any way to change this setting without bracket?
For instance, how to preferentially compute vector products rather than matrix products.
Please, let me know.
N = 5000;
A = rand(N);
B = rand(N);
C = rand(N);
D = rand(N,1);
tic
E1 = A*B*C*D;
toc
tic
E2 = A*(B*(C*D));
toc

Respuesta aceptada

Matt J
Matt J el 1 de Ag. de 2023
Editada: Matt J el 1 de Ag. de 2023
Is there any way to change this setting without bracket?
I doubt there is, but it's the kind of thing that should probably be handled using a user-defined function anyway, rather than a Matlab environment change. This FEX submission for example attempts to implement matrix products in an optimized order, shielding the user from the details:

Más respuestas (1)

Paul
Paul el 1 de Ag. de 2023
"Is there any way to change this setting without bracket?"
No. From the doc page for Operator Precedence: "Within each precedence level, operators have equal precedence and are evaluated from left to right."
However, that statement should say "... most are evaluated ..." as that page show exceptions to the general rule. But mtimes, * is not one of those exceptions.

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Productos


Versión

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by