AbstractSparseMatrixCSC{Tv,Ti<:Integer} <: AbstractSparseMatrix{Tv,Ti}
Supertype for matrix with compressed sparse column (CSC).
!!! compat "Julia 1.4"
AbstractSparseMatrixCSC
requires at least Julia 1.4.
In addition to the [Abstract array interface](@ref man-interface-array), every
AbstractSparseMatrixCSC
subtype TS
must provide the following methods:
- [
size(::TS)
](@ref size) - [
coloffsets(::TS) :: AbstractVector{<:Ti}
](@ref coloffsets) - [
rowvals(::TS) :: AbstractVector{<:Ti}
](@ref rowvals) - [
nonzeros(::TS) :: AbstractVector{<:Tv}
](@ref nonzeros)
Other sparse matrix methods such as nzrange
and nnz
are automatically
defined in terms of above functions.
To use algorithms defined in SparseArrays, a matrix A
of type AbstractSparseMatrixCSC
must satisfy the following constraints.
@assert !has_offset_axes(A)
@assert !has_offset_axes(coloffsets(A))
@assert !has_offset_axes(rowvals(A))
@assert !has_offset_axes(nonzeros(A))
for col in axes(A, 2)
@assert issorted(rowval(A)[nzrange(A, col)])
end
@assert coloffsets(A)[1] === 1
@assert all(diff(coloffsets(A)) .>= 0)
@assert nnz(A) <= length(rowvals(A))
@assert nnz(A) <= length(nonzeros(A))
@assert size(A, 1) <= typemax(Ti)
@assert nnz(A) <= typemax(Ti)