标签: c matrix-multiplication blas
可能重复: Efficient way of computing matrix product AXA'?
我有两个双精度矩阵:
M
l ⨯ m
S
m ⨯ m
我想计算:
R = M ⨯ S ⨯ t(M)
其中t(M)是M的转置。
t(M)
查看(C)BLAS例程列表,我没有找到任何直接解决此案例的内容。那么,最有效的例程组合是什么,可以让我计算R?
R