Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图找到一个类似于 ejml 的DMatrixRMaj的类,但对于向量,做这样的事情
double[][] probPoints; //initialize probPoints [...] provad = new DMatrixRMaj(probPoints); provad.print();
不幸的是,DMatrixRMaj 在构造函数中不接受double[],我在 javadoc 中找不到任何东西。你知道它是否存在吗?
double[]
我现在找到了一个有用的解决方法
double[] overUnder12; //initialize overUnder12; [...] new DMatrixRMaj(new double[][]{overUnder12}).print();
也许不是官方解决方案,但至少对于我必须做的事情来说效果很好。