vincentsuen 发表于 2008-11-28 21:43

用mscohere命令画出的相干函数怎么恒等于1?

我在matlab中用mscohere计算频域的相干函数,直接将两个信号时程带入该命令,可是计算出来的相干函数恒等于1,命令如下:
= mscohere(xx5,xx4,hamming(np),0,np,sf);

为了对比,我又采用相干函数的定义来计算,即用互谱的平方除以两个自谱再开方,结果还是等于1:
=periodogram(xx5,hamming(np),np,sf,'onesided');
=periodogram(xx4,hamming(np),np,sf,'onesided');
=cpsd(xx5,xx4,hamming(np),0,np,sf,'onesided');
S54=abs(S54);
C54 =sqrt(S54.^2./(S55.*S44));

ChaChing 发表于 2009-3-17 11:55

Ref
http://forum.vibunion.com/forum/viewthread.php?tid=73476&highlight=
页: [1]
查看完整版本: 用mscohere命令画出的相干函数怎么恒等于1?