Efficient submatrix product computation
Ältere Kommentare anzeigen
I am considering the discrete Smoluchowski equations and I need efficiently compute a matrix product.
For
,
and a given
I want to compute the product

I can easily do this by the following for loop
b = 0
for j = 1:ceil((i-1)/2)
b = b + K(j,i-j)*y(j)*y(i-j);
end
However, I want to know if there is a more efficient way of computing this product in a single line or less.
1 Kommentar
Chunru
am 20 Sep. 2022
Have you tested that your above code works?
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Parallel Computing 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!