Azzera filtri
Azzera filtri

how to preferentially compute vector products rather than matrix products

1 visualizzazione (ultimi 30 giorni)
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

Risposta accettata

Matt J
Matt J il 1 Ago 2023
Modificato: Matt J il 1 Ago 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:

Più risposte (1)

Paul
Paul il 1 Ago 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.

Categorie

Scopri di più su Loops and Conditional Statements in Help Center e File Exchange

Prodotti


Release

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by