Click or drag to resize

LinearEquationsSolve(Matrix, Vector) Method

Computes the solution to a real system of linear equations A * X = B, where A is a general matrix.

Namespace: DotNumerics.LinearAlgebra
Assembly: DWSIM.MathOps.DotNumerics (in DWSIM.MathOps.DotNumerics.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public Vector Solve(
	Matrix A,
	Vector B
)
Request Example View Source

Parameters

A  Matrix
The square matrix.
B  Vector
The vector containing the right-hand side of the linear system.

Return Value

Vector
A vector containing the solution to the linear system of equations.
See Also