public SquareMatrix(
double[,] entries
)
Public Sub New (
entries As Double(,)
)
public:
SquareMatrix(
array<double,2>^ entries
)
new :
entries : float[,] -> SquareMatrix
The 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. |