public SquareMatrix(
double[,] entries
)Public Sub New (
entries As Double(,)
)public:
SquareMatrix(
array<double,2>^ entries
)new :
entries : float[,] -> SquareMatrixThe entries are copied, so changes to entries after the matrix is initialized do not affect matrix entries.
| ArgumentNullException | entries is . |
| DimensionMismatchException | The two dimensions of entries are not equal. |