SparseSolve(_:_:_:)
Solve the equation Subfactor * X = B for the matrix X of complex float values, in place.
Declaration
func SparseSolve(_ Subfactor: SparseOpaqueSubfactor_Complex_Float, _ B: DenseMatrix_Complex_Float, _ X: DenseMatrix_Complex_Float)Parameters
- Subfactor:
(Input) The subfactor to solve a system involving, as returned by
SparseCreateSubfactor(). - B:
(Input) The right-hand sides
B. IfSubfactorism x n, thenBmust have dimensionm x nrhs, wherenrhsis the number of right-hand sides. - X:
(Output) The solutions
X. IfSubfactorism x n, andBism x nrhs, thenXmust have dimensionn x nrhs.