C# Класс YAMP.Exceptions.YAMPDifferentDimensionsException

Class to use when two matrices (or objects) have different dimensions.
Наследование: YAMPRuntimeException
Показать файл Открыть проект

Открытые методы

Метод Описание
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