|
对,就是这个函数。我在用Matlab5.3版本时就用过Matlab的HOSA工具箱,不过6.0以后的版本好像都没有这个工具箱了。
把这个函数的说明贴上来:
CUMEST Second-, third- or fourth-order cumulants.
y_cum = cumest (y, norder, maxlag, samp_seg, overlap, flag, k1, k2)
y - time-series - should be a vector
norder - cumulant order: 2, 3 or 4 [default = 2]
maxlag - maximum cumulant lag to compute [default = 0]
samp_seg - samples per segment [default = data_length]
overlap - percentage overlap of segments [default = 0]
overlap is clipped to the allowed range of [0,99].
flag - 'biased' or 'unbiased' [default = 'biased']
k1,k2 - specify the slice of 3rd or 4th order cumulants
y_cum - C2(m) or C3(m,k1) or C4(m,k1,k2), -maxlag <= m <= maxlag
depending upon the cumulant order selected
看完说明你就知道怎么用了! |
|