📄 mexhat.m
字号:
function h = mexhat(nu) ;%MEXHAT Mexican hat wavelet in time domain.% H=MEXHAT(NU) returns the mexican hat wavelet with central % frequency NU (NU is a normalized frequency in Hz). %% NU : any real between 0 and 0.5 (default : 0.05).% H : time vector containing the mexhat samples. % length(H)=2*ceil(1.5/NU)+1.%% Example : % plot(mexhat);%% See also KLAUDER.% P. Goncalves, October 95% Copyright (c) 1995 Rice University%% This program is free software; you can redistribute it and/or modify% it under the terms of the GNU General Public License as published by% the Free Software Foundation; either version 2 of the License, or% (at your option) any later version.%% This program is distributed in the hope that it will be useful,% but WITHOUT ANY WARRANTY; without even the implied warranty of% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the% GNU General Public License for more details.%% You should have received a copy of the GNU General Public License% along with this program; if not, write to the Free Software% Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USAif nargin==0, nu=0.05;elseif nargin>1, error('Too many input parameters');endif nu>0.5 | nu<0, disp('Warning : NU should be between 0 and 0.5');endN = 1.5 ;alpha = pi^2*nu^2 ;n = ceil(N/nu) ; t = -n:n ;h = nu*sqrt(pi)/2*exp(-alpha*t.^2).*(1-2*alpha*t.^2) ;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -