We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
view(::MatElem, ::Int, ::Int)
This doesn't work:
julia> M = matrix(ZZ, [ 1 2 3 ; 4 5 6]) [1 2 3] [4 5 6] julia> view(M, 1, 1) ERROR: StackOverflowError: Stacktrace: [1] view(M::AbstractAlgebra.Generic.MatSpaceElem{BigInt}, rows::Int64, cols::Int64) (repeats 79984 times) @ AbstractAlgebra ~/.julia/dev/AbstractAlgebra/src/Matrix.jl:432
With Julia matrices it does:
julia> view(M.entries, 1, 1) 0-dimensional view(::Matrix{BigInt}, 1, 1) with eltype BigInt: 1
I guess we would have to add a type MatSpaceScalarView (?) to the view interface? Also this particular view function
MatSpaceScalarView
view
AbstractAlgebra.jl/src/Matrix.jl
Line 429 in 6b230ed
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This doesn't work:
With Julia matrices it does:
I guess we would have to add a type
MatSpaceScalarView
(?) to theview
interface? Also this particularview
functionAbstractAlgebra.jl/src/Matrix.jl
Line 429 in 6b230ed
The text was updated successfully, but these errors were encountered: