C# Класс YAMP.Numerics.GivensDecomposition

The Givens rotation is an implementation of a QR decomposition. This decomposition also works for complex numbers.
Наследование: QRDecomposition
Показать файл Открыть проект

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

Метод Описание
GivensDecomposition ( MatrixValue A ) : YAMP.Exceptions

Creates a new Givens decomposition.

Solve ( MatrixValue b ) : MatrixValue

Least squares solution of A * X = B

Описание методов

GivensDecomposition() публичный Метод

Creates a new Givens decomposition.
public GivensDecomposition ( MatrixValue A ) : YAMP.Exceptions
A MatrixValue The matrix to decompose.
Результат YAMP.Exceptions

Solve() публичный Метод

Least squares solution of A * X = B
public Solve ( MatrixValue b ) : MatrixValue
b MatrixValue A Matrix with as many rows as A and any number of columns.
Результат MatrixValue