C# 클래스 YAMP.Exceptions.YAMPDifferentDimensionsException

Class to use when two matrices (or objects) have different dimensions.
상속: YAMPRuntimeException
파일 보기 프로젝트 열기: FlorianRappl/YAMP

공개 메소드들

메소드 설명
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.

메소드 상세

YAMPDifferentDimensionsException() 공개 메소드

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.
리턴 System

YAMPDifferentDimensionsException() 공개 메소드

Creates a new different dimensions exception.
public YAMPDifferentDimensionsException ( MatrixValue A, MatrixValue B ) : System
A MatrixValue The matrix A.
B MatrixValue The matrix B.
리턴 System