You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
but if I changed the designmethod to any FIR filter design methods, such as FIRWindow ,freqresp complains with MethodError: no method matching freqresp(::Vector{Float64}) :
responsetype = Lowpass(0.2)
designmethod = FIRWindow(hanning(64)) # <- changed here
coeffs = digitalfilter(responsetype, designmethod)
H,w = freqresp(coeffs) #breaks here
The text was updated successfully, but these errors were encountered:
This works as expected:
but if I changed the
designmethod
to any FIR filter design methods, such asFIRWindow
,freqresp
complains withMethodError: no method matching freqresp(::Vector{Float64})
:The text was updated successfully, but these errors were encountered: