C# Class YAMP.Exceptions.YAMPDifferentDimensionsException

Class to use when two matrices (or objects) have different dimensions.
Inheritance: YAMPRuntimeException
Afficher le fichier Open project: FlorianRappl/YAMP

Méthodes publiques

Méthode Description
YAMPDifferentDimensionsException ( Int32 rowsA, Int32 columnsA, Int32 rowsB, Int32 columnsB ) : System

Creates a new different dimensions exception.

YAMPDifferentDimensionsException ( MatrixValue A, MatrixValue B ) : System

Creates a new different dimensions exception.

Method Details

YAMPDifferentDimensionsException() public méthode

Creates a new different dimensions exception.
public YAMPDifferentDimensionsException ( Int32 rowsA, Int32 columnsA, Int32 rowsB, Int32 columnsB ) : System
rowsA System.Int32 The rows in A.
columnsA System.Int32 The columns in A.
rowsB System.Int32 The rows in B.
columnsB System.Int32 The columns in B.
Résultat System

YAMPDifferentDimensionsException() public méthode

Creates a new different dimensions exception.
public YAMPDifferentDimensionsException ( MatrixValue A, MatrixValue B ) : System
A MatrixValue The matrix A.
B MatrixValue The matrix B.
Résultat System