Skip to content

Commit

Permalink
Remove deprecations added in v0.7 (#604)
Browse files Browse the repository at this point in the history
  • Loading branch information
martinholters authored Dec 4, 2024
1 parent 710ee46 commit ade83dd
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions src/deprecated.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,3 @@ import .Util.nextfastfft
@deprecate nextfastfft(ns...) nextfastfft.(ns) false

@deprecate (conv(u::AbstractVector{T}, v::AbstractVector{T}, A::AbstractMatrix{T}) where T) conv(u, transpose(v), A)

# deprecations in 0.7
@deprecate freqz(filter::FilterCoefficients{:z}) freqresp(filter, range(0, stop=π, length=250))
@deprecate freqz(filter::FilterCoefficients{:z}, w) freqresp(filter, w)
@deprecate freqs(filter::FilterCoefficients{:s}, w) freqresp(filter, w)
@deprecate freqz(filter::FilterCoefficients{:z}, hz, fs) freqresp(filter, hz * ((2 * pi) / fs))
@deprecate freqs(filter::FilterCoefficients{:s}, hz, fs) freqresp(filter, hz * ((2 * pi) / fs))
@deprecate phasez(filter::FilterCoefficients{:z}) phaseresp(filter, range(0, stop=π, length=250))
@deprecate phasez(filter::FilterCoefficients{:z}, w) phaseresp(filter, w)
@deprecate grpdelayz(filter::FilterCoefficients{:z}) grpdelay(filter, range(0, stop=π, length=250))
@deprecate grpdelayz(filter::FilterCoefficients{:z}, w) grpdelay(filter, w)
@deprecate impz(filter::FilterCoefficients{:z}) impresp(filter)
@deprecate impz(filter::FilterCoefficients{:z}, n) impresp(filter, n)
@deprecate stepz(filter::FilterCoefficients{:z}) stepresp(filter)
@deprecate stepz(filter::FilterCoefficients{:z}, n) stepresp(filter, n)

0 comments on commit ade83dd

Please sign in to comment.