这就是我到目前为止所得到的......
public static void main(String[] args) {
Random random= new Random();
Matrix mR = new Matrix(3,3,random.nextDouble()) ;
System.out.println("Here is a 3x3 matrix with random values " +Arrays.deepToString(mR.getArray()));
}
问题是当我打印出来时,所有的值都是一样的。我需要的是每个索引中的不同值。我知道这可以简单地通过创建一个数组,为其分配随机值,然后将其复制到矩阵中来完成。但我需要直接从矩阵 mR 中执行此操作。