Efficient submatrix product computation
Mostrar comentarios más antiguos
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 comentario
Chunru
el 20 de Sept. de 2022
Have you tested that your above code works?
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Parallel Computing en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!