cambifunb.m

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

M
19
字号
%CAMBIFUNB Ambiguity function% [NAF,TAU,XI] = Cambifunb(X,TAU,N);%% Computes the narrow-band ambiguity function%% X           = Signal for which the AF should be computed% TAU         = Vector of lag values     (default : -Nx/2:Nx/2).% N           = Number of frequency bins (default : length(X)).% NAF         = doppler-lag representation, with the doppler bins stored % 	        in the rows and the time-lags stored in the columns.% XI          = vector of doppler values.%% Note: The cross ambiguity function is not implemented yet%% Example :%%  [AF,TAU,XI]=Cambifunb(hilbert(sin(2*pi*0.25*(1:128)))+0.5*randn(1,128));%  imagesc(XI,TAU,abs(AF)); axis xy; %  xlabel('Time lag'); ylabel('Frequency lag')

⌨️ 快捷键说明

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