Click or drag to resize

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

Parameters

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

Implements

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