GeneralMatrix Constructor

DotNetMatrix

An NDoc Documented Class Library

GeneralMatrix Constructor

Construct an m-by-n matrix of zeros.

Overload List

Construct a matrix from a one-dimensional packed array

public GeneralMatrix(double[],int);

Construct a matrix from a 2-D array.

public GeneralMatrix(double[][]);

Construct a matrix quickly without checking arguments.

public GeneralMatrix(double[][],int,int);

Construct an m-by-n matrix of zeros.

public GeneralMatrix(int,int);

Construct an m-by-n constant matrix.

public GeneralMatrix(int,int,double);

See Also

GeneralMatrix Class | DotNetMatrix Namespace