To apply window function on Wigner-Ville Distribution in Matlab
问题 We were thinking here how to create Hamming-64 window of overlap 64. It is done by h = hamming(64); h2 = hamming(38); h = conv(h, h2); Now, we are thinking how you can apply this window function to the resulted variabels of the Wigner-Ville Distribution function of Auger et al in Time-Frequency Toolbox. The function tfrwv.m does not have any parameter for window function. So we have these variables [B,T,F] = tfrwv(data, 1:length(data), length(data)); Here is one answer to related problem, but