如何加载Apache Commons Math RealMatrix

时间:2015-02-20 01:34:37

标签: apache math matrix io

使用实用程序加载带有Apache Common Math的矩阵非常复杂:    MatrixUtils.deserializeRealMatrix(对象实例,String fieldName,ObjectInputStream ois)

因为您必须实现一个新类来存储" fieldname"的结果。

你知道更好的方法吗?我想做的就是:

RealMatrix A = loadMatrix(" myrealmatrix.dat");

1 个答案:

答案 0 :(得分:1)

序列化/反序列化方法适用于Java对象序列化。从文件加载RealMatrix的最简单方法是使用this之类的代码(修改为处理用于表示源数据的任何格式)以将文件数据加载到double[][] }数组,然后使用createRealMatrix中的MatrixUtils方法。