Bispectrum Indirect FFT method
12 views (last 30 days)
Show older comments
1. Mostly, the bispectrum were computed using the indirect FFT method (I hope I am right) ([bspec, waxis] = bispeci(y, nlag, samp_seg, overlap, flag, wind)). Here, I do not understand what “nlag” specifies. In the toolbox, it is mentioned as “number of cumulant lags to be computed”. Also I do not understand the term “flag” (biased or unbiased). Can you please explain with an example? How to set these parameters? Apart from default window, is there any way to do our analysis with other windows (e.g., hanning)?
0 Comments
Answers (1)
Wayne King
on 29 Sep 2013
Edited: Wayne King
on 29 Sep 2013
This function estimates the bispectrum by first estimating the third-order cumulants of the random process, x(t), which is formally
E\{x*(t)x(t+k)x(t+l)\}
The asterisk denotes complex conjugation. k and l are lags.
'biased' (the default) means that the average in the expectation is obtained by dividing by the number of samples 'unbiased' means the average in the expectation is obtained by dividing by the number of samples-1
Look at biased vs. unbiased estimates in statistics and you'll see where that comes from. I would recommend using 'biased' in this case for the same reasons you should use biased in the autocorrelation sequence estimates. This is well documented in the literature.
Without the application of a smoothing window, the bispectrum estimate is an inconsistent estimator of the true bispectrum. The nlags parameter determines how many samples are used in the smoothing window. I would start with approximately 1/4 of your input time series length as a first pass.
See Also
Categories
Find more on Random Number Generation in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!