What is the best method for selecting design properties for a digital filter in Matlab with the GUI sptool? More specifically, if I have a signal, how do I go about determining which filter values will yield the best solution.
Example:
For my signal A
:
One possible filter could have properties:
- Design Method:
FIR, Window
- Window Type:
Gaussian
- Order:
10
- Fs:
100
5: Fc:10
Another possible filter could have properties:
- Design Method:
FIR, Window
- Window Type:
Hamming
- Order:
7
- Fs:
64
5: Fc:28
There are infinitely more possible filters.
I assume that one of the solutions yields a "better" answer than all others and it is that solution that I am trying to find. I know that I can try a brute force method, but I would rather not. Please suggest a methodology for selecting the filter properties that gives this "best" solution.