XLPack 7.0
XLPack Numerical Library (Excel VBA) Reference Manual
Loading...
Searching...
No Matches
Functions

Functions

Sub ZCscIlu (N As Long, Val() As Complex, Colptr() As Long, Rowind() As Long, P As Long, Val2() As Complex, Colptr2() As Long, Rowind2() As Long, D() As Complex, Optional Info As Long, Optional Base As Long=-1, Optional Base2 As Long=0)
 Initialize incomplete LU decomposition with level (ILU(p)) preconditioner (Complex matrices) (CSC)
 
Sub ZCscIlu0 (N As Long, Val() As Complex, Colptr() As Long, Rowind() As Long, Val2() As Complex, D() As Complex, Optional Info As Long, Optional Base As Long=-1)
 Initialize incomplete LU decomposition without fill-in (ILU0) preconditioner (Complex matrices) (CSC)
 
Sub ZCscIluSolve (ByVal Trans As String, N As Long, Val() As Complex, Colptr() As Long, Rowind() As Long, D() As Complex, B() As Complex, X() As Complex, Optional Info As Long, Optional Base As Long=-1)
 Incomplete LU decomposition (ILU) preconditioner (Complex matrices) (CSC)
 
Sub ZCscSsorSolve (Trans As String, N As Long, Omega As Double, Val() As Complex, Colptr() As Long, Rowind() As Long, D() As Complex, B() As Complex, X() As Complex, Optional Info As Long, Optional Base As Long=-1)
 Symmetric successive over-relaxation (SSOR) preconditioner (Complex matrices) (CSC)
 
Sub ZCsrIlu (N As Long, Val() As Complex, Rowptr() As Long, Colind() As Long, P As Long, Val2() As Complex, Rowptr2() As Long, Colind2() As Long, D() As Complex, Optional Info As Long, Optional Md As Long=0, Optional Base As Long=-1, Optional Base2 As Long=0)
 Initialize incomplete LU decomposition with level (ILU(p)) preconditioner (Complex matrices) (CSR)
 
Sub ZCsrIlu0 (N As Long, Val() As Complex, Rowptr() As Long, Colind() As Long, Val2() As Complex, D() As Complex, Optional Info As Long, Optional Base As Long=-1)
 Initialize incomplete LU decomposition without fill-in (ILU0) preconditioner (Complex matrices) (CSR)
 
Sub ZCsrIluSolve (ByVal Trans As String, N As Long, Val() As Complex, Rowptr() As Long, Colind() As Long, D() As Complex, B() As Complex, X() As Complex, Optional Info As Long, Optional Base As Long=-1)
 Incomplete LU decomposition (ILU) preconditioner (Complex matrices) (CSR)
 
Sub ZCsrSsorSolve (Trans As String, N As Long, Omega As Double, Val() As Complex, Rowptr() As Long, Colind() As Long, D() As Complex, B() As Complex, X() As Complex, Optional Info As Long, Optional Base As Long=-1)
 Symmetric successive over-relaxation (SSOR) preconditioner (Complex matrices) (CSR)
 
Sub ZCsxDs (N As Long, Val() As Complex, Ptr() As Long, Ind() As Long, D() As Complex, Optional Info As Long, Optional Base As Long=-1)
 Initialize diagonal scaling preconditioner (Complex matrices) (CSC/CSR)
 
Sub ZCsxDsSolve (N As Long, D() As Complex, B() As Complex, X() As Complex, Optional Info As Long)
 Diagonal scaling preconditioner (Complex matrices) (CSC/CSR)
 
Sub ZCsxSsor (N As Long, Omega As Double, Val() As Complex, Ptr() As Long, Ind() As Long, D() As Complex, Optional Info As Long, Optional Base As Long=-1)
 Initialize symmetric successive over-relaxation (SSOR) preconditioner (Complex matrices) (CSC/CSR)
 
Sub ZSscSsorSolve (Uplo As String, N As Long, Omega As Double, Val() As Complex, Colptr() As Long, Rowind() As Long, D() As Complex, B() As Complex, X() As Complex, Optional Info As Long, Optional Base As Long=-1)
 Symmetric successive over-relaxation (SSOR) preconditioner (Complex symmetric matrices) (CSC)
 
Sub ZSsrSsorSolve (Uplo As String, N As Long, Omega As Double, Val() As Complex, Rowptr() As Long, Colind() As Long, D() As Complex, B() As Complex, X() As Complex, Optional Info As Long, Optional Base As Long=-1)
 Symmetric successive over-relaxation (SSOR) preconditioner (Complex symmetric matrices) (CSR)
 

Detailed Description

This is the group of D2c4. Solution of systems of linear equations (Complex general matrices) (Preconditioners)