Vectorise a matrix multiplication chain

1 view (last 30 days)
Divij Gupta
Divij Gupta on 22 Jun 2021
Answered: KSSV on 22 Jun 2021
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}?

Answers (1)

KSSV
KSSV on 22 Jun 2021
Read about the function prod.

Categories

Find more on Operating on Diagonal Matrices in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!