From a7f50dc039fc951a90a77084babee121ac72a901 Mon Sep 17 00:00:00 2001 From: Alfredo Braunstein Date: Sun, 13 Jan 2019 18:37:37 +0100 Subject: [PATCH] improve docstring of SparseMatrixCSC (#30689) (cherry picked from commit 0a6935f9c48fd0679a05f72eff64ab708fe7e164) --- stdlib/SparseArrays/src/sparsematrix.jl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/stdlib/SparseArrays/src/sparsematrix.jl b/stdlib/SparseArrays/src/sparsematrix.jl index 1ce5b41ce5356..fb4a19e4cc981 100644 --- a/stdlib/SparseArrays/src/sparsematrix.jl +++ b/stdlib/SparseArrays/src/sparsematrix.jl @@ -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