  | NMathFunctionsSolve(FloatComplexCsrSparseMatrix, FloatComplexVector) Method | 
            Solves the linear system Ax = b.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static FloatComplexVector Solve(
	FloatComplexCsrSparseMatrix A,
	FloatComplexVector b
)
Public Shared Function Solve ( 
	A As FloatComplexCsrSparseMatrix,
	b As FloatComplexVector
) As FloatComplexVector
public:
static FloatComplexVector^ Solve(
	FloatComplexCsrSparseMatrix^ A, 
	FloatComplexVector^ b
)
static member Solve : 
        A : FloatComplexCsrSparseMatrix * 
        b : FloatComplexVector -> FloatComplexVector Parameters
- A  FloatComplexCsrSparseMatrix
 - A CSR Sparse matrix.
 - b  FloatComplexVector
 - Vector to solve for. Must have a length equal to the
            number of rows in A.
 
Return Value
FloatComplexVectorA vector 
x that is the solution to 
Ax = b.
Exceptions
See Also