GeometryClassLibrary.MatricesMatrix.MatricesMatrix C# (CSharp) 메소드

MatricesMatrix() 공개 메소드

Creates a square matrix with the specified number of rows and columns the constructor that is called when you say new MatricesMatrix(numberOfRows, numberOfColumns)
public MatricesMatrix ( int numRowsAndColumns ) : System
numRowsAndColumns int
리턴 System
        public MatricesMatrix(int numRowsAndColumns)
        {
            _matrices = new Matrix[numRowsAndColumns, numRowsAndColumns];
        }

Same methods

MatricesMatrix::MatricesMatrix ( int numRows, int numCols ) : System