Click or drag to resize
DigitalRuneIterativeLinearSystemSolverFSolve Method (MatrixF, VectorF)
Solves the specified linear system of equations A * x = b.

Namespace: DigitalRune.Mathematics.Algebra
Assembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax
public VectorF Solve(
	MatrixF matrixA,
	VectorF vectorB
)

Parameters

matrixA
Type: DigitalRune.Mathematics.AlgebraMatrixF
The matrix A.
vectorB
Type: DigitalRune.Mathematics.AlgebraVectorF
The vector b.

Return Value

Type: VectorF
The solution vector x.
Remarks
A zero vector is used as initial guess for x.
See Also