## S3 method for class 'default':
freqz(filt = 1, a = 1, n = 512, region = NULL, Fs = 2 * pi, \ldots)
## S3 method for class 'Arma':
freqz(filt, \ldots)
## S3 method for class 'Ma':
freqz(filt, \ldots)
## S3 method for class 'freqz':
print(x, \ldots)
## S3 method for class 'freqz':
plot(x, \ldots)
## S3 method for class 'default':
freqz_plot(w, h, \ldots)
## S3 method for class 'freqz':
freqz_plot(w, \ldots)
filt
specifies an arbitrary model or filter operation.'half'
(the default) to evaluate around the upper half of the
unit circle or whole'
to evaluate around the entire unit circle.w
specifies an object from which to plot a frequency response.freqz
, arguments are passed to
the default method. For freqz_plot
, additional arguments are
passed through to plot
.freqz
list of class freqz
with items:n
should factor into a small number of
small primes.
When results of freqz
are printed, freqz_plot
will be
called to display frequency plots of magnitude and phase. As with
lattice
plots, automatic printing does not work inside loops and
function calls, so explicit calls to print
or plot
are
needed there.filter
, Arma
, freqs
b = c(1,0,-1)
a = c(1,0,0,0,0.25)
freqz(b, a)
Run the code above in your browser using DataLab