Click or drag to resize

MatrixMathSingularValueDecompositionBacksubstitution(Double, Double) 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.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public void Backsubstitution(
	double[] b,
	double[] x
)

Parameters

b  Double
Input vector.
x  Double
The resulting vector that fullfilles A·x=b.
See Also