@@ -517,7 +517,7 @@ supplied, `combine` defaults to `+` unless the elements of `V` are Booleans in w
517
517
elements of `J` must satisfy `1 <= J[k] <= n`. Numerical zeros in (`I`, `J`, `V`) are
518
518
retained as structural nonzeros; to drop numerical zeros, use [`dropzeros!`](@ref).
519
519
520
- For additional documentation and an expert driver, see `Base. SparseArrays.sparse!`.
520
+ For additional documentation and an expert driver, see `SparseArrays.sparse!`.
521
521
522
522
# Examples
523
523
```jldoctest
@@ -903,7 +903,7 @@ to generate intermediate result `(AQ)^T` (`transpose(A[:,q])`) in `C`. (2) Colum
903
903
904
904
The first step is a call to `halfperm!`, and the second is a variant on `halfperm!` that
905
905
avoids an unnecessary length-`nnz(A)` array-sweep and associated recomputation of column
906
- pointers. See [`halfperm!`](:func:Base. SparseArrays.halfperm!) for additional algorithmic
906
+ pointers. See [`halfperm!`](:func:SparseArrays.halfperm!) for additional algorithmic
907
907
information.
908
908
909
909
See also: `unchecked_aliasing_permute!`
@@ -1215,7 +1215,7 @@ julia> A = sparse(Diagonal([1, 2, 3, 4]))
1215
1215
[3, 3] = 3
1216
1216
[4, 4] = 4
1217
1217
1218
- julia> Base. SparseArrays.fkeep!(A, (i, j, v) -> isodd(v))
1218
+ julia> SparseArrays.fkeep!(A, (i, j, v) -> isodd(v))
1219
1219
4×4 SparseMatrixCSC{Int64,Int64} with 2 stored entries:
1220
1220
[1, 1] = 1
1221
1221
[3, 3] = 3
@@ -2924,7 +2924,7 @@ julia> A = sparse([1 2; 0 0])
2924
2924
[1, 1] = 1
2925
2925
[1, 2] = 2
2926
2926
2927
- julia> Base. SparseArrays.dropstored!(A, 1, 2); A
2927
+ julia> SparseArrays.dropstored!(A, 1, 2); A
2928
2928
2×2 SparseMatrixCSC{Int64,Int64} with 1 stored entry:
2929
2929
[1, 1] = 1
2930
2930
```
@@ -2964,7 +2964,7 @@ julia> A = sparse(Diagonal([1, 2, 3, 4]))
2964
2964
[3, 3] = 3
2965
2965
[4, 4] = 4
2966
2966
2967
- julia> Base. SparseArrays.dropstored!(A, [1, 2], [1, 1])
2967
+ julia> SparseArrays.dropstored!(A, [1, 2], [1, 1])
2968
2968
4×4 SparseMatrixCSC{Int64,Int64} with 3 stored entries:
2969
2969
[2, 2] = 2
2970
2970
[3, 3] = 3
0 commit comments