finddelay returns identical value (0) for "best" and "worst" case.
6 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposte (1)
Brian Neiswander
il 21 Ago 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
Vedere anche
Categorie
Scopri di più su Spectral Estimation in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!