Accord.Math.Environments.REnvironment.matrix C# (CSharp) Метод

matrix() защищенный Метод

Creates a new matrix.
protected matrix ( double values, int rows, int cols ) : mat
values double
rows int
cols int
Результат mat
        protected mat matrix(double[] values, int rows, int cols)
        {
            return Matrix.Reshape(values, rows, cols, MatrixOrder.FortranColumnMajor);
        }
REnvironment