Click or drag to resize

ManagedLinearAlgebraProviderSvdSolveFactored(Int32, Int32, Single, Single, Single, Single, Int32, Single) Method

Solves A*X=B for X using a previously SVD decomposed matrix.

Namespace: Altaxo.Calc.Providers.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public void SvdSolveFactored(
	int rowsA,
	int columnsA,
	float[] s,
	float[] u,
	float[] vt,
	float[] b,
	int columnsB,
	float[] x
)

Parameters

rowsA  Int32
The number of rows in the A matrix.
columnsA  Int32
The number of columns in the A matrix.
s  Single
The s values returned by SingularValueDecomposition(Boolean, Single, Int32, Int32, Single, Single, Single).
u  Single
The left singular vectors returned by SingularValueDecomposition(Boolean, Single, Int32, Int32, Single, Single, Single).
vt  Single
The right singular vectors returned by SingularValueDecomposition(Boolean, Single, Int32, Int32, Single, Single, Single).
b  Single
The B matrix.
columnsB  Int32
The number of columns of B.
x  Single
On exit, the solution matrix.

Implements

ILinearAlgebraProviderTSvdSolveFactored(Int32, Int32, T, T, T, T, Int32, T)
See Also