JuliaLinearAlgebra / BlockBandedMatrices.jl

A Julia package for representing block-banded matrices and banded-block-banded matrices
https://julialinearalgebra.github.io/BlockBandedMatrices.jl/
MIT License
56 stars 13 forks source link

Array(::BlockSkylineMatrix) returns nothing #39

Open dlfivefifty opened 5 years ago

dlfivefifty commented 5 years ago
julia> BlockBandedMatrix{Float64}(undef, (1:3,1:3),(1,1)) |> Array

Cf. https://github.com/JuliaLang/julia/issues/32213#issuecomment-499095683

dlfivefifty commented 5 years ago

The culprit is here: https://github.com/JuliaArrays/BlockArrays.jl/blob/7558ffaae620071423959d69f1e3194002e788d7/src/abstractblockarray.jl#L297

This was to add docs so will have to think about it.