Click or drag to resize

MatrixNotSquareException(String, Int32, Int32) Constructor

Constructs a MatrixNotSquareException instance with an error message containing the name of the operation, and the number of rows and columns in the non-square matrix.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public MatrixNotSquareException(
	string operation,
	int rows,
	int cols
)

Parameters

operation  String
The name of the operation being performed
rows  Int32
The number of rows in the matrix.
cols  Int32
The number of columns in the matrix.
See Also