Constructs a InvalidArgumentException 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: 5.1.0.0

Syntax

C#
public InvalidArgumentException(
	string operation,
	int rows,
	int cols
)
Visual Basic (Declaration)
Public Sub New ( _
	operation As String, _
	rows As Integer, _
	cols As Integer _
)
Visual C++
public:
InvalidArgumentException(
	String^ operation, 
	int rows, 
	int cols
)

Parameters

operation
Type: System..::.String
The name of the operation being performed
rows
Type: System..::.Int32
The number of rows in the matrix.
cols
Type: System..::.Int32
The number of columns in the matrix.

See Also