如何在apache-commons-math库中将RealVector乘以矩阵(v*M)?我发现只有矩阵乘以矩阵和RealVector乘以矩阵。
发布于 2016-09-21 02:10:03
preMultiply似乎就是你要找的方法。
RealVector vector = ...
RealMatrix matrix = ...
RealVector result = matrix.preMultiply(vector);https://stackoverflow.com/questions/39600782
复制相似问题