Owning Class: filter design
Requires: MathScript RT Module
b = fir_gauss(k, l)
b = fir_gauss(k, 'minorder', v)
[b, l] = fir_gauss(k, 'minorder', v)
Legacy Name: firgauss
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. |
The following table lists the support characteristics of this function.
| Supported in the LabVIEW Run-Time Engine | Yes |
| Supported on RT targets | Yes |
| Suitable for bounded execution times on RT | Not characterized |
b = fir_gauss(10, 10);
plot(b)
b = fir_gauss(5, 'minorder', 5)