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 7f61196 commit e350f0aCopy full SHA for e350f0a
src/LinearAlgebra/helper.jl
@@ -716,18 +716,6 @@ conv(y::SVector{1}, x::AbstractVector) = y[1]*x
716
conv(x::AbstractFill, y::SVector{1}) = x*y[1]
717
conv(y::SVector{1}, x::AbstractFill) = y[1]*x
718
conv(x::AbstractFill, y::AbstractFill) = DSP.conv(x, y)
719
-function conv(x::AbstractFill, y::AbstractVector)
720
- isinf(length(x)) || return DSP.conv(x,y)
721
- @assert length(y) == 1
722
- x*y[1]
723
-end
724
-function conv(y::AbstractVector, x::AbstractFill)
725
- isinf(length(x)) || return DSP.conv(y,x)
726
727
- y[1]*x
728
729
-
730
731
732
733
## BlockInterlacer
0 commit comments