0

我正在使用 EJML SimpleMatrix,The method getData() is undefined for the type Matrix当我尝试使用以下代码返回 double[] 时出现错误:

double[] test = result.getMatrix().getData();

任何帮助表示赞赏!

4

1 回答 1

2

我需要导入 DMatrixRMaj 并将 .getMatrix() 转换为 DMatrixRMaj,然后使用 .getData()。请参阅下面的代码

double[] ret = ((DMatrixRMaj)result.getMatrix()).getData();
于 2020-03-25T18:27:15.813 回答