Efficient submatrix product computation
Show older comments
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 Comment
Chunru
on 20 Sep 2022
Have you tested that your above code works?
Accepted Answer
More Answers (0)
Categories
Find more on Parallel Computing 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!