SparseSolve(_:_:_:)
Solve the equation Subfactor * X = B for the matrix X of complex double values, in place.
Declaration
func SparseSolve(_ Subfactor: SparseOpaqueSubfactor_Complex_Double, _ B: DenseMatrix_Complex_Double, _ X: DenseMatrix_Complex_Double)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.