Vectorise a matrix multiplication chain
Ältere Kommentare anzeigen
I want to find a non-loop way to do the following:
for c = 1:q
h = h*Z{c};
end
Basically, how can I vectorise Z{1}*Z{2}*...*Z{q}?
Antworten (1)
KSSV
am 22 Jun. 2021
0 Stimmen
Read about the function prod.
Kategorien
Mehr zu Linear Algebra finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!