|  | FloatLUFactSolve(FloatVector) 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 FloatVector Solve(
	FloatVector b
)
Public Function Solve ( 
	b As FloatVector
) As FloatVector
public:
FloatVector^ Solve(
	FloatVector^ b
)
member Solve : 
        b : FloatVector -> FloatVector Parameters
- b  FloatVector
- Vector to solve for. Must have a length equal to the
            number of rows in the factored matrix.
Return Value
FloatVectorA vector 
x that is the solution to 
Ax = b.
 Exceptions
Exceptions See Also
See Also