SparseMatrix_Complex_Double
A type representing a sparse complex matrix.
Declaration
struct SparseMatrix_Complex_DoubleOverview
data is the array of values in the non-zero blocks of the matrix stored contiguously, each block in column-major order. If there are N structural non-zero blocks in the matrix, data holds blockSize * blockSize * N doubles.
term
structureThe symbolic structure of the matrix.term
dataThe numerical values of the matrix. Ifstructure.blockSize > 1, blocks are stored contiguously in column-major format.