Node:Miscellaneous Commands, Next:Variables, Previous:Specifications, Up:Simple Interface
| output-file n | Command |
This command sets the name of the output file to n. If n is
the false value #f, gmeteor produces no output. If n is
the string "-", gmeteor outputs to standard output. The default
value is "-".
The output file contains the filter coefficients, and additional information when the verbose mode is on. |
| plot-file n | Command |
This command sets the name of the plot file to n. If n is
the false value #f, gmeteor produces no plot file. If n is
the string "-", gmeteor outputs the plot file to standard output.
The default value is #f.
The plot file contains a series of lines of the form f H(f), for various frequencies f equispaced between 0 and half the sampling frequency. The spacing is controlled by the plot grid density parameter. |
| plot-absolute b | Command |
If b is the true value #t, then gmeteor plots the
absolute value of the frequency response in the plot file. The default
is to plot the signed value, which corresponds to (plot-absolute
#f).
|
| verbose b | Command |
If b is the true value #t, then gmeteor prints the
design parameters to the output file, in addition to the filter
coefficients. The default is not to print additional information, which
corresponds to (verbose #f).
The additional information includes the title, symmetry, filter length, grid density, and the list of specifications. |
| grid-density n | Command |
Set the grid density for the filter. gmeteor samples all frequencies
on a finite grid consisting of n frequencies between 0 and
half the sampling frequencies. If unspecified, the grid density
is about ten times the filter length.
|
| plot-grid-density n | Command |
Set the plot grid density for the filter. For the purposes of producing
a plot file, gmeteor samples all frequencies on a finite grid
consisting of n frequencies between 0 and half the sampling
frequencies. If unspecified, the plot grid density equals the grid
density.
|
| go | Command |
Compute the optimal filter and print the output files. gmeteor does
not compute anything unless this command is given.
The rationale for an explicit |