Click or drag to resize

MatrixTSolve(VectorT) Method

Solves a system of linear equations, Ax = b, with A QR factorized.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public Vector<T> Solve(
	Vector<T> input
)

Parameters

input  VectorT
The right hand side vector, b.

Return Value

VectorT
The left hand side VectorT, x.
See Also