Skip to content

Commit

Permalink
make make doc work
Browse files Browse the repository at this point in the history
  • Loading branch information
fredrikekre committed Dec 22, 2017
1 parent 9befccd commit 67dc16a
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 25 deletions.
2 changes: 0 additions & 2 deletions base/linalg/dense.jl
Original file line number Diff line number Diff line change
Expand Up @@ -317,8 +317,6 @@ Vector `kv.second` will be placed on the `kv.first` diagonal.
versions with fast arithmetic, see [`Diagonal`](@ref), [`Bidiagonal`](@ref)
[`Tridiagonal`](@ref) and [`SymTridiagonal`](@ref).
See also: [`spdiagm`](@ref)
# Examples
```jldoctest
julia> diagm(1 => [1,2,3])
Expand Down
1 change: 0 additions & 1 deletion doc/src/stdlib/base.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,6 @@ Base.Markdown
Base.Meta
Base.Pkg
Base.Serializer
Base.SparseArrays
Base.StackTraces
Base.Sys
Base.Threads
Expand Down
1 change: 0 additions & 1 deletion doc/src/stdlib/linalg.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ Base.LinAlg.pinv
Base.LinAlg.nullspace
Base.repmat
Base.kron
Base.SparseArrays.blkdiag
Base.LinAlg.linreg
Base.LinAlg.exp(::StridedMatrix{<:Base.LinAlg.BlasFloat})
Base.LinAlg.log(::StridedMatrix)
Expand Down
42 changes: 21 additions & 21 deletions stdlib/SparseArrays/docs/src/index.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sparse Vectors and Matrices
# Sparse Arrays

Julia has support for sparse vectors and [sparse matrices](https://en.wikipedia.org/wiki/Sparse_matrix)
in the `SparseArrays` stdlib module. Sparse arrays are arrays that contain enough zeros
Expand Down Expand Up @@ -193,24 +193,24 @@ section of the standard library reference.
# [Sparse Arrays](@id stdlib-sparse-arrays)

```@docs
Base.SparseArrays.SparseVector
Base.SparseArrays.SparseMatrixCSC
Base.SparseArrays.sparse
Base.SparseArrays.sparsevec
Base.SparseArrays.issparse
Base.SparseArrays.nnz
Base.SparseArrays.spzeros
Base.SparseArrays.spones
Base.SparseArrays.spdiagm
Base.SparseArrays.sprand
Base.SparseArrays.sprandn
Base.SparseArrays.nonzeros
Base.SparseArrays.rowvals
Base.SparseArrays.nzrange
Base.SparseArrays.dropzeros!(::SparseMatrixCSC, ::Bool)
Base.SparseArrays.dropzeros(::SparseMatrixCSC, ::Bool)
Base.SparseArrays.dropzeros!(::SparseVector, ::Bool)
Base.SparseArrays.dropzeros(::SparseVector, ::Bool)
Base.SparseArrays.permute
Base.permute!{Tv, Ti, Tp <: Integer, Tq <: Integer}(::SparseMatrixCSC{Tv,Ti}, ::SparseMatrixCSC{Tv,Ti}, ::AbstractArray{Tp,1}, ::AbstractArray{Tq,1})
SparseArrays.SparseVector
SparseArrays.SparseMatrixCSC
SparseArrays.sparse
SparseArrays.sparsevec
SparseArrays.issparse
SparseArrays.nnz
SparseArrays.spzeros
SparseArrays.spdiagm
SparseArrays.blkdiag
SparseArrays.sprand
SparseArrays.sprandn
SparseArrays.nonzeros
SparseArrays.rowvals
SparseArrays.nzrange
SparseArrays.dropzeros!(::SparseMatrixCSC, ::Bool)
SparseArrays.dropzeros(::SparseMatrixCSC, ::Bool)
SparseArrays.dropzeros!(::SparseVector, ::Bool)
SparseArrays.dropzeros(::SparseVector, ::Bool)
SparseArrays.permute
permute!{Tv, Ti, Tp <: Integer, Tq <: Integer}(::SparseMatrixCSC{Tv,Ti}, ::SparseMatrixCSC{Tv,Ti}, ::AbstractArray{Tp,1}, ::AbstractArray{Tq,1})
```

0 comments on commit 67dc16a

Please sign in to comment.