Effacer les filtres
Effacer les filtres

How to decide the window, nfft and noverlap for mscohere function?

8 vues (au cours des 30 derniers jours)
baba
baba le 3 Août 2016
Hi all,
I am trying to use mscohere to calculate coherence for two time signals each 300 ms long with 1000 Hz sampling rate so total number of samples = 300. Could you please help me to figure out how to decide the Window, nfft and noverlap for using mscohere?
Thanks a lot!
  1 commentaire
baba
baba le 3 Août 2016
I am trying to calculate coherence for a band of frequencies, for ex. 8-15 Hz.

Connectez-vous pour commenter.

Réponses (1)

André Lopes Brum
André Lopes Brum le 20 Déc 2018
d=4; % i got this 4 from a book, but i also saw some people using 8 instead
nfft=(nextpow2(length(x)/d))-1; nfft=2^nfft;
overlap = nttf/2;
window = hanning(nfft); % hanning is default
if you want to calculate the frequency of 15 Hz, you may need to rearrange your data, by setting:
F1= 15; % frequency that i wanna know
fs=F1/nfft;
and now interpolate your data with the new frequency sample, so the result of the mscohere.m will show you the frequency that you want to study.

Catégories

En savoir plus sur Mathematics dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by