We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2559ac commit 6ceba6eCopy full SHA for 6ceba6e
src/Operators/SubOperator.jl
@@ -354,7 +354,7 @@ for TYP in (:RaggedMatrix, :Matrix)
354
elseif isbandedblockbanded(A)
355
N = block(rangespace(A), last(parentindices(V)[1]))
356
M = block(domainspace(A), last(parentindices(V)[2]))
357
- B = A[Block(1):N, Block(1):M]
+ B = BandedBlockBandedMatrix(view(A, Block(1):N, Block(1):M))
358
RaggedMatrix{eltype(V)}(view(B, parentindices(V)...), _colstops(V))
359
else
360
$def_TYP(V)
0 commit comments