Click or drag to resize

MatrixNotSquareException Class

Exception thrown when a matrix operation requiring a square matrix is presented with a non-square one.
Inheritance Hierarchy
SystemObject
  SystemException
    SystemApplicationException
      CenterSpace.NMath.CoreNMathException
        CenterSpace.NMath.CoreMatrixNotSquareException

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
[SerializableAttribute]
public class MatrixNotSquareException : NMathException

The MatrixNotSquareException type exposes the following members.

Constructors
 NameDescription
Public methodMatrixNotSquareException Default constructor. Constructs an empty MatrixNotSquareException instance.
Public methodMatrixNotSquareException(String) Constructs a MatrixNotSquareException instance with the specifed exception message.
Public methodMatrixNotSquareException(String, Exception) Constructs a MatrixNotSquareException instance with the specifed exception message and underlying (inner) exception.
Public methodMatrixNotSquareException(String, Int32, Int32) 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.
Public methodMatrixNotSquareException(String, Int64, Int64) 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.
Top
See Also