ManagedLinearAlgebraProviderSvdSolve(Complex, Int32, Int32, Complex, Int32, Complex) Method |
Solves A*X=B for X using the singular value decomposition of A.
Namespace: Altaxo.Calc.Providers.LinearAlgebraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public void SvdSolve(
Complex[] a,
int rowsA,
int columnsA,
Complex[] b,
int columnsB,
Complex[] x
)
Parameters
- a Complex
- 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 Complex
- The B matrix.
- columnsB Int32
- The number of columns of B.
- x Complex
- On exit, the solution matrix.
Implements
ILinearAlgebraProviderTSvdSolve(T, Int32, Int32, T, Int32, T)See Also