我正在尝试从双打数组中创建一个向量。然后我想用矩阵乘以这个向量。有谁知道我怎么能做到这一点?下面是一个非常简单的例子,我想继续工作。
// Create the matrix (using JAMA)
Matrix a = new Matrix( [[1,2,3],[1,2,3],[1,2,3]] );
// Create a vector out of an array
...
// Multiply the vector by the matrix
...
答案 0 :(得分:12)
以下是需要操作的简单示例:
double[][] array = {{1.,2.,3},{1.,2.,3.},{1.,2.,3.}};
Matrix a = new Matrix(array);
Matrix b = new Matrix(new double[]{1., 1., 1.}, 1);
Matrix c = b.times(a);
System.out.println(Arrays.deepToString(c.getArray()));
结果:
[[3.0, 6.0, 9.0]]
换句话说就是:
答案 1 :(得分:1)
为什么不能使用Matrix的arrayTimes方法?向量只是一个1 x n矩阵(我认为)所以你不能初始化只有1维的第二个矩阵并使用arrayTimes吗?
Matrix a = new Matrix( [[1,2,3],[1,2,3],[1,2,3]] );
Matrix b = new Matrix( [[1,2,3]] ); // this is a vector
Matrix c = a.arrayTimes(b.transpose); // transpose so that the inner dimensions agree
我认为这可以通过阅读doc来实现。
答案 2 :(得分:0)
这个怎么样:
double[][] vals = {{1.,2.,3},{4.,5.,6.},{7.,8.,10.}};
Matrix A = new Matrix(vals);
来自http://math.nist.gov/javanumerics/jama/doc/Jama/Matrix.html