コード例 #1
0
 /// <summary>
 /// Geenerates random square matrix of n by m dimensions where entries range from 0 to the specified max value.
 /// </summary>
 public static Matrix GenerateRandomMatrix(int numRows, int numCols, double maxValue)
 {
     return(new Matrix(MatrixFunctions.GenerateRandomMatrix(numRows, numCols, maxValue)));
 }