Click or drag to resize
DigitalRuneIterativeLinearSystemSolverDSolve Method (MatrixD, VectorD)
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 VectorD Solve(
	MatrixD matrixA,
	VectorD vectorB
)

Parameters

matrixA
Type: DigitalRune.Mathematics.AlgebraMatrixD
The matrix A.
vectorB
Type: DigitalRune.Mathematics.AlgebraVectorD
The vector b.

Return Value

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