Owning Class: filter design
Requires: MathScript RT Module
c = convmx(a, b)
Legacy Name: convmtx
Computes the convolution matrix of an input vector.
| Name | Description |
|---|---|
| a | Specifies the input vector. If a is a column vector and d is a column vector of length b, then convmx(a, b)*d is the same as conv(a, d). If a is a row vector and d is a row vector of length b, then d*convmx(a, b) is the same as conv(d, a). |
| b | Specifies the size of the output matrix. |
| Name | Description |
|---|---|
| c | Returns the convolution matrix. |
y = convmx(1:10, 5)