Member of the filter design class.
b = firgauss(k, l)
b = firgauss(k, 'minorder', v)
[b, l] = firgauss(k, 'minorder', v)
Uses cascading uniform coefficient filters of length l to design a digital FIR Gaussian filter.
| Name | Description |
| k | Specifies the number of uniform coefficient filters. k is a positive integer. |
| l | Specifies the length of the uniform coefficient filters. l is a positive integer. |
| 'minorder' | LabVIEW uses the minimum length of the uniform coefficient filters. |
| v | Specifies the variance of the Gaussian filter. v is a positive number. |
| Name | Description |
| b | Returns the coefficients of the Gaussian filter. |
| l | Returns the length of the uniform coefficient filters. |
b = firgauss(10, 10);
plot(b)
b = firgauss(5, 'minorder', 5)