To scale values from Wigner-Ville Distribution to real range in Matlab

后端 未结 2 902
借酒劲吻你
借酒劲吻你 2021-01-17 03:44

I run by using the function tfrwv.m in Time-Frequency Toolbox

[B,T,F] = tfrwv(data, 1:length(data), length(data), 1);
B(1:130, :) = 0;    % remove the duplic         


        
2条回答
  •  长情又很酷
    2021-01-17 04:39

    I think tfrwv is equivalent to spectrogram if you use the following command.

    Time-interval is t = 1/360. Choose fs = 360.5.

    imagesc(T*t, F*fs, abs(B)); 
    

    There are more peaks in tfrwv probably because the window size and overlap are different from what you used in spectrogram.

    The result

    enter image description here

提交回复
热议问题