|  | DoubleLUFactSolveInPlace(DoubleVector) Method | 
            Uses the LU factorization of self to solve the linear system Ax = b.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic void SolveInPlace(
	DoubleVector b
)
Public Sub SolveInPlace ( 
	b As DoubleVector
)
public:
void SolveInPlace(
	DoubleVector^ b
)
member SolveInPlace : 
        b : DoubleVector -> unit Parameters
- b  DoubleVector
- Vector to solve for. Must have a length equal to the
            number of rows in the factored matrix.
Return Value
A vector 
x that is the solution to 
Ax = b.
 Exceptions
Exceptions See Also
See Also