| LinearEquationsSolve(Double, Double) Method | 
            Computes the solution to a real system of linear equations A * X = B, where A is a general matrix. 
            
Namespace: DotNumerics.LinearAlgebraAssembly: DWSIM.MathOps.DotNumerics (in DWSIM.MathOps.DotNumerics.dll) Version: 1.0.0.0 (1.0.0.0)
 Syntax
Syntaxpublic double[] Solve(
	double[,] A,
	double[] B
)
Public Function Solve ( 
	A As Double(,),
	B As Double()
) As Double()
Parameters
- A  Double
- The square matrix.
- B  Double
- The vector containing the right-hand side of the linear system.
Return Value
DoubleA vector containing the solution to the linear system of equations.
 See Also
See Also