Skip to content

Commit

Permalink
improve docstring of SparseMatrixCSC (#30689)
Browse files Browse the repository at this point in the history
  • Loading branch information
abraunst authored and fredrikekre committed Jan 13, 2019
1 parent b56a9f0 commit 0a6935f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion stdlib/SparseArrays/src/sparsematrix.jl
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
SparseMatrixCSC{Tv,Ti<:Integer} <: AbstractSparseMatrix{Tv,Ti}
Matrix type for storing sparse matrices in the
[Compressed Sparse Column](@ref man-csc) format.
[Compressed Sparse Column](@ref man-csc) format. The standard way
of constructing SparseMatrixCSC is through the [`sparse`](@ref) function.
See also [`spzeros`](@ref), [`spdiagm`](@ref) and [`sprand`](@ref).
"""
struct SparseMatrixCSC{Tv,Ti<:Integer} <: AbstractSparseMatrix{Tv,Ti}
m::Int # Number of rows
Expand Down

0 comments on commit 0a6935f

Please sign in to comment.