SimpleMatrix getMatrix().getData() 问题
SimpleMatrix getMatrix().getData() issue
我正在使用 EJML SimpleMatrix,当我尝试使用以下代码 return 双精度 [] 时出现错误 The method getData() is undefined for the type Matrix
:
double[] test = result.getMatrix().getData();
感谢任何帮助!
我需要导入 DMatrixRMaj 并将 .getMatrix() 转换为 DMatrixRMaj,然后使用 .getData()。请参阅下面的代码
double[] ret = ((DMatrixRMaj)result.getMatrix()).getData();
我正在使用 EJML SimpleMatrix,当我尝试使用以下代码 return 双精度 [] 时出现错误 The method getData() is undefined for the type Matrix
:
double[] test = result.getMatrix().getData();
感谢任何帮助!
我需要导入 DMatrixRMaj 并将 .getMatrix() 转换为 DMatrixRMaj,然后使用 .getData()。请参阅下面的代码
double[] ret = ((DMatrixRMaj)result.getMatrix()).getData();