MatrixMathSingularValueDecompositionBacksubstitution(IReadOnlyListDouble, IVectorDouble) Method |
Solves A·X = B for a vector X, where A is specified by A=U*S*V'. U, S, and V are
results of the decomposition.
Namespace: Altaxo.Calc.LinearAlgebraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public void Backsubstitution(
IReadOnlyList<double> b,
IVector<double> x
)
Parameters
- b IReadOnlyListDouble
- Input vector.
- x IVectorDouble
- The resulting vector that fullfilles A·x=b.
See Also