c = blackman(m)
c = blackman(m, opt)
| Parameter | Description |
|---|---|
| m | positive integer: window length |
| opt | string: 'symetric' (default) or 'periodic' |
| Parameter | Description |
|---|---|
| c | column vector |
c = blackman(m) computes coefficients of a Blackman window of length m.
c = blackman(8)
c = blackman(8, 'periodic')
| Version | Description |
|---|---|
| 1.0.0 | initial version |