离散信号可以用向量来表示,这就和线性代数联系的较为紧密.
如何表示2个信号的相似程度呢?通过向量类比,可以求向量之间的夹角,如果夹角趋近于180说明2个信号差异越大,如果夹角趋近于0,说明2个信号越相似
比如下面的例子:
There are two possible signals that can be sent, x0 or x1, which communicate a transmitted 0 or 1, respectively. The code randomly picks one of the signals, and then adds noise to it. Using inner products (which the code computes), you can guess which signal was sent.
1 | %%% |
信号处理实际上是矩阵处理,特别是对于离散系统而言