Skip to content

Commit b889fce

Browse files
committed
Make BandedLinearOperator callable on Sequence
1 parent 1f3455f commit b889fce

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/sequence_spaces/special_operators/special_operator.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ end
7979
const BLinearOperator = BandedLinearOperator
8080

8181
Base.:*(S::BandedLinearOperator, a::Sequence) = (S * Projection(space(a))) * a
82+
(A::BandedLinearOperator)(b::Sequence) = *(A, b)
8283

8384
image(A::BandedLinearOperator, s::VectorSpace) =
8485
image(A.finite_part, s) _image(A.banded_part, s)

0 commit comments

Comments
 (0)