AnimatGuiCtrls.MatrixLibrary.Matrix.Matrix C# (CSharp) Method

Matrix() public method

Matrix object constructor, constructs a matrix from an already defined array object.
public Matrix ( double Mat ) : System
Mat double the array the matrix will contain
return System
        public Matrix(double [,] Mat)
        {
            this.in_Mat = (double[,])Mat.Clone();
        }

Same methods

Matrix::Matrix ( int noRows, int noCols ) : System