Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 Matlab 中计算向量(单信号)的相关性。到目前为止我知道,这应该是一个相关矩阵,但在 Matlab 中我没有找到给我一个矩阵的函数。Xcorr() 给出一个向量。因此,如果有人知道,我将不胜感激。
问候
您可能正在寻找以下corrcoef功能:
corrcoef
corrcoef(rand(10,1),rand(10,1)) ans = 1.0000 -0.2110 -0.2110 1.0000
对于时间序列,相关性定义为向量。
也许你想要类似的东西:
A*(A.')
其中 A 是列向量。