Skip to content

BlockBandedMatrix should have extra entries so subblocks are banded #119

Open
@dlfivefifty

Description

@dlfivefifty

Ideally we'd have:

julia> B = BlockBandedMatrix{Float64}(undef, Fill(2,10), Fill(3, 10), (1, 2));

julia> MemoryLayout(view(B, getindex.(Block.(1:10), 1), getindex.(Block.(1:1), 2))) isa BandedColumns{StridedLayout}

To do this, we have several things to do:

  1. Support getindex.(Block.(1:10), 1). This will need a new type in BlockArrays.jl
  2. Split out BlockBandedMatrix from BlockSkylineMatrix (to simplify things)
  3. Special case when the block sizes are all the same size.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions