Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove deprecations added in v0.7 #604

Merged
merged 1 commit into from
Dec 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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)
Loading