ctfrpwv.m

来自「Time-Frequency Toolbox,其中包含很常用的MATLAB程序」· M 代码 · 共 21 行

M
21
字号
%CTFRPWV	Pseudo Wigner-Ville time-frequency distribution.% [TFR,T,F]=TFRPWV(X,T,N,H)%% computes the Pseudo Wigner-Ville distribution of a  signal X. %  % X     = Analyzed signal.% T     = time instant(s)          (default : 1:length(X)).% N     = number of frequency bins (default : length(X)).% H     = frequency smoothing window, in the time-domain,%                                  (default : Hamming(N/4)). %% TFR   = time-frequency representation.% F     = vector of normalized frequencies.%% Example :%   x = hilbert(sin(2*pi*0.25*(1:128))+0.5*randn(1,128));  %   t=1:128; [tfr,T,F]=Ctfrpwv(x,t,128);%   imagesc(T,F,tfr); axis xy; xlabel('time'); ylabel('frequency')%% SEE ALSO : Ctfrwv, Ctfrspwv

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?