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