ctfrrsp.m

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

M
20
字号
%CTFRRSP Reassigned Spectrogram% [SP_reas,SP,FIELD] = Ctfrrsp(X,T,N,H)%% Computes the reassigned spectrogram, the spectrogram and the% field of reassignment vectors%% X        = Analyzed signal% T        = the time instant(s)   (default : 1:length(X)).% N        = number of frequency bins (default : length(X)).% H        = frequency smoothing window, (default : Hamming(N/4)).%% SP_reas  = Reassigned spectrogram % SP       = Spectrogram (not reassigned)% FIELD    = Field of reassignment vectors%% Example: SP_reas=Ctfrrsp(hilbert(sin(2*pi*0.25*(1:128)))+0.5*randn(1,128));%          imagesc(SP_reas); axis xy;%% SEE ALSO : Ctfrreas, Cwindow

⌨️ 快捷键说明

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