How to efficiently calculate a weighted sum of 3 dimensional matrix through a vector in matlab
4 次查看(过去 30 天)
显示 更早的评论
A is a 3 dimensional matrix (M*N*K), b is a vector with length K. I need to calculate
, which is a 2 dimensional matrix (M*N). But i don't want to write it by a explicit summation because it is too slow. Is there any way to calculate it efficiently through matlab? Please attach the code if convenience.
3 个评论
Matt J
2023-11-20
@Hancheng Zhu If that means you've settled on one of the answers below, please Accept-click one of them.
采纳的回答
Bruno Luong
2023-11-17
编辑:Bruno Luong
2023-11-17
This uses matrix multiplication so it should be well optimized and fast.
[m,n] = size(A, [1 2]);
C = reshape(A,m*n, []) * B(:);
C = reshape(C, m, n);
0 个评论
更多回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!