Click or drag to resize

ManagedLinearAlgebraProviderSvdSolve(Single, Int32, Int32, Single, Int32, Single) 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#
public void SvdSolve(
	float[] a,
	int rowsA,
	int columnsA,
	float[] b,
	int columnsB,
	float[] x
)

Parameters

a  Single
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  Single
The B matrix.
columnsB  Int32
The number of columns of B.
x  Single
On exit, the solution matrix.

Implements

ILinearAlgebraProviderTSvdSolve(T, Int32, Int32, T, Int32, T)
See Also