Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将一个行向量V与一个矩阵相乘M得到一个向量V',即
V
M
V'
V' = V * M
我怎么能用 MTJ 做到这一点?该接口Vector似乎没有multiply方法。
Vector
multiply
我设法使用 (V * M) T = M T *V T的属性解决了我的问题,即
M.transposeMult(V, resV);
不过,我想知道是否有更清洁的方法。