Efficient submatrix product computation
显示 更早的评论
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 个评论
Chunru
2022-9-20
Have you tested that your above code works?
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Parallel Computing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!