Click or drag to resize

ManagedLinearAlgebraProviderSvdSolve(Double, Int32, Int32, Double, Int32, Double) 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(
	double[] a,
	int rowsA,
	int columnsA,
	double[] b,
	int columnsB,
	double[] x
)

Parameters

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

Implements

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