Click or drag to resize

ILinearAlgebraProviderTSvdSolve Method

Solves A*X=B for X using the singular value decomposition of A.

Namespace: Altaxo.Calc.Providers.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
void SvdSolve(
	T[] a,
	int rowsA,
	int columnsA,
	T[] b,
	int columnsB,
	T[] x
)

Parameters

a  T
On entry, the M by N matrix to decompose.
rowsA  Int32
The number of rows in the A matrix.
columnsA  Int32
The number of columns in the A matrix.
b  T
The B matrix.
columnsB  Int32
The number of columns of B.
x  T
On exit, the solution matrix.
See Also