如何使用库中的函数转置数组?我已经从这里下载并使用了 Colt 库:http: //acs.lbl.gov/software/colt/api/index.html。我试过 :
DoubleMatrix1D array;
array = new DenseDoubleMatrix1D(4);
for (int i=0; i<4; i++)
array.set(i,i);
DoubleMatrix1D transpose = array.viewDice();
但它不起作用,因为我收到错误:
The method viewDice() is undefined for the type DoubleMatrix1D
有任何想法吗?