finddelay returns identical value (0) for "best" and "worst" case.
7 views (last 30 days)
Show older comments
I'm curious about what the reasoning could be for having finddelay() return 0 if no significant correlation is found. That means that the user has no way of distinguishing cases where the signals overlap with 0 delay and when the signals are not correlated at all. Why not return NaN?
0 Comments
Answers (1)
Brian Neiswander
on 21 Aug 2015
Hi Evan,
The "finddelay" function does not consider the strength of the correlation found. Given two signals, it simply returns the lag that produces the maximum absolute value of their cross-correlation. In the "More About" section of the "finddelay" documentation page below:
you can find a description of the algorithm used to calculate the estimated delay. Here, it states that:
"Pairs of signals need not be exact delayed copies of each other. However, the estimated delay has a useful meaning only if there is sufficient correlation between at least one pair of the delayed signals."
In other words, the output will not be significant if the two signals are uncorrelated. For the functionality you are asking for, you can use the code suggested by Wayne King in the following MATLAB Answers post:
Hope this is helpful.
-Brian
See Also
Categories
Find more on Spectral Estimation in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!