@@ -6,7 +6,7 @@ import Base: size, getindex, setindex!, IndexStyle, checkbounds, convert,
6
6
+ , - , * , / , \ , diff, sum, cumsum, maximum, minimum, sort, sort!,
7
7
any, all, axes, isone, iterate, unique, allunique, permutedims, inv,
8
8
copy, vec, setindex!, count, == , reshape, _throw_dmrs, map, zero,
9
- show
9
+ show, view
10
10
11
11
import LinearAlgebra: rank, svdvals!, tril, triu, tril!, triu!, diag, transpose, adjoint, fill!,
12
12
norm2, norm1, normInf, normMinusInf, normp, lmul!, rmul!, diagzero, AbstractTriangular, AdjointAbsVec
@@ -152,7 +152,9 @@ convert(::Type{Fill}, arr::AbstractArray{T}) where T = Fill{T}(unique_value(arr)
152
152
convert (:: Type{Fill{T}} , arr:: AbstractArray ) where T = Fill {T} (unique_value (arr), axes (arr))
153
153
convert (:: Type{Fill{T,N}} , arr:: AbstractArray{<:Any,N} ) where {T,N} = Fill {T,N} (unique_value (arr), axes (arr))
154
154
convert (:: Type{Fill{T,N,Axes}} , arr:: AbstractArray{<:Any,N} ) where {T,N,Axes} = Fill {T,N,Axes} (unique_value (arr), axes (arr))
155
- convert (:: Type{T} , F:: T ) where T<: Fill = F # ambiguity fix
155
+ # ambiguity fix
156
+ convert (:: Type{Fill} , arr:: Fill{T} ) where T = Fill {T} (unique_value (arr), axes (arr))
157
+ convert (:: Type{T} , F:: T ) where T<: Fill = F
156
158
157
159
158
160
@@ -211,14 +213,14 @@ reshape(parent::AbstractFill, dims::Integer...) = reshape(parent, dims)
211
213
reshape (parent:: AbstractFill , dims:: Union{Int,Colon} ...) = reshape (parent, dims)
212
214
reshape (parent:: AbstractFill , dims:: Union{Integer,Colon} ...) = reshape (parent, dims)
213
215
214
- reshape (parent:: AbstractFill , dims:: Tuple{Vararg{Union{Integer,Colon}}} ) =
216
+ reshape (parent:: AbstractFill , dims:: Tuple{Vararg{Union{Integer,Colon}}} ) =
215
217
fill_reshape (parent, Base. _reshape_uncolon (parent, dims)... )
216
- reshape (parent:: AbstractFill , dims:: Tuple{Vararg{Union{Int,Colon}}} ) =
218
+ reshape (parent:: AbstractFill , dims:: Tuple{Vararg{Union{Int,Colon}}} ) =
217
219
fill_reshape (parent, Base. _reshape_uncolon (parent, dims)... )
218
- reshape (parent:: AbstractFill , shp:: Tuple{Union{Integer,Base.OneTo}, Vararg{Union{Integer,Base.OneTo}}} ) =
219
- reshape (parent, Base. to_shape (shp))
220
- reshape (parent:: AbstractFill , dims:: Dims ) = Base. _reshape (parent, dims)
221
- reshape (parent:: AbstractFill , dims:: Tuple{Integer, Vararg{Integer}} ) = Base. _reshape (parent, dims)
220
+ reshape (parent:: AbstractFill , shp:: Tuple{Union{Integer,Base.OneTo}, Vararg{Union{Integer,Base.OneTo}}} ) =
221
+ reshape (parent, Base. to_shape (shp))
222
+ reshape (parent:: AbstractFill , dims:: Dims ) = Base. _reshape (parent, dims)
223
+ reshape (parent:: AbstractFill , dims:: Tuple{Integer, Vararg{Integer}} ) = Base. _reshape (parent, dims)
222
224
Base. _reshape (parent:: AbstractFill , dims:: Dims ) = fill_reshape (parent, dims... )
223
225
Base. _reshape (parent:: AbstractFill , dims:: Tuple{Integer,Vararg{Integer}} ) = fill_reshape (parent, dims... )
224
226
# Resolves ambiguity error with `_reshape(v::AbstractArray{T, 1}, dims::Tuple{Int})`
@@ -344,7 +346,7 @@ for f in (:triu, :triu!, :tril, :tril!)
344
346
end
345
347
346
348
347
- Base. replace_in_print_matrix (A:: RectDiagonal , i:: Integer , j:: Integer , s:: AbstractString ) =
349
+ Base. replace_in_print_matrix (A:: RectDiagonal , i:: Integer , j:: Integer , s:: AbstractString ) =
348
350
i == j ? s : Base. replace_with_centered_mark (s)
349
351
350
352
378
380
379
381
Eye (n:: Integer , m:: Integer ) = RectDiagonal (Ones (min (n,m)), n, m)
380
382
Eye {T} (n:: Integer , m:: Integer ) where T = RectDiagonal {T} (Ones {T} (min (n,m)), n, m)
381
- function Eye {T} ((a,b):: NTuple{2,AbstractUnitRange{Int}} ) where T
383
+ function Eye {T} ((a,b):: NTuple{2,AbstractUnitRange{Int}} ) where T
382
384
ab = length (a) ≤ length (b) ? a : b
383
385
RectDiagonal {T} (Ones {T} ((ab,)), (a,b))
384
386
end
@@ -605,7 +607,7 @@ if VERSION ≥ v"1.5"
605
607
Base. array_summary (io:: IO , a:: Fill{T} , inds:: Tuple{Vararg{Base.OneTo}} ) where T =
606
608
print (io, Base. dims2string (length .(inds)), " Fill{$T }" )
607
609
Base. array_summary (io:: IO , a:: Eye{T} , inds:: Tuple{Vararg{Base.OneTo}} ) where T =
608
- print (io, Base. dims2string (length .(inds)), " Eye{$T }" )
610
+ print (io, Base. dims2string (length .(inds)), " Eye{$T }" )
609
611
end
610
612
611
613
Base. show (io:: IO , :: MIME"text/plain" , x:: Union{Eye,AbstractFill} ) = show (io, x)
@@ -617,4 +619,16 @@ Base.show(io::IO, ::MIME"text/plain", x::Union{Eye,AbstractFill}) = show(io, x)
617
619
getindex_value (a:: LinearAlgebra.AdjOrTrans ) = getindex_value (parent (a))
618
620
getindex_value (a:: SubArray ) = getindex_value (parent (a))
619
621
622
+
623
+ # #
624
+ # view
625
+ # #
626
+
627
+ Base. @propagate_inbounds view (A:: AbstractFill{<:Any,N} , kr:: AbstractArray{Bool,N} ) where N = getindex (A, kr)
628
+ Base. @propagate_inbounds view (A:: AbstractFill{<:Any,1} , kr:: AbstractVector{Bool} ) = getindex (A, kr)
629
+ Base. @propagate_inbounds view (A:: AbstractFill{<:Any,N} , I:: Vararg{Union{Real, AbstractArray}, N} ) where N =
630
+ getindex (A, I... )
631
+ Base. @propagate_inbounds view (A:: AbstractFill{<:Any,N} , I:: Vararg{Real, N} ) where N =
632
+ Base. invoke (view, Tuple{AbstractArray,Vararg{Any,N}}, A, I... )
633
+
620
634
end # module
0 commit comments