Apache commons math:具有任意数量维度的矩阵

时间:2016-03-15 08:21:42

标签: java math matrix apache-commons-math

我需要使用Java处理nD(n维,任意n)矩阵,我正在尝试使用apache commons math。我只需要常见的操作:求和,乘,除,转移等。

我可以很容易地创建N×N矩阵的双精度数:

result onComplete {
case Success(x) => {
  x groupBy { x => x._1 } map {x=>(x._1, x._2.map(_._2))}

}
case Failure(err) => {
  log error s"$err"
}

有人知道如何用这个库创建和处理具有任意数量维度(N x N x N x N ...)的矩阵吗?

1 个答案:

答案 0 :(得分:0)

Apache常用数学只支持二维矩阵。