gabor.m
来自「spectral element method」· M 代码 · 共 9 行
M
9 行
% f = gabor(t,f0,t0,gamma,theta)% gamma controls the width of the signal, and the spectral bandwidthfunction f = gabor(t,f0,t0,gamma,theta)w0 = 2*pi*f0;if isempty(t0), t0 = 0.45*gamma/f0; endif ~exist('theta','var'), theta=[]; endif isempty(theta), theta = pi/2; endf = exp(-( w0/gamma*(t-t0) ).^2) .* cos( w0*(t-t0)+theta);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?