matlab中信号对象的表示

If the sequence has complex-valued elements, the transpose operator takes the conjugate of the sequence elements. To transform a complex-valued row vector into a column vector without taking conjugates, use the .' or non-conjugate transpose:

x = [1-i 3+i 2+3i 4-2i]; % 1-by-4 vector
x = x.'; % 4-by-1 vector
两种不同的转置方式,直接转会取共轭,加‘.’之后只是单纯转置,不取共轭。

posted @ 2018-09-06 15:49  Lucas_Yu  阅读(230)  评论(0编辑  收藏  举报