代码搜索:Morlet

找到约 218 项符合「Morlet」的源代码

代码结果 218
www.eeworm.com/read/179927/9331324

m morlet.m

function[out]=morlet(x) out=x.*exp(-(x.^2)/2);
www.eeworm.com/read/372474/9509100

m morlet.m

function[out]=morlet(x) out=cos(1.75*x).*exp(-(x.^2)/2);
www.eeworm.com/read/366080/9833438

m morlet.m

function[out]=morlet(x) out=cos(1.75*x).*exp(-(x.^2)/2);
www.eeworm.com/read/361503/10049854

m morlet.m

function[out]=morlet(x) out=cos(1.75*x).*exp(-(x.^2)/2);
www.eeworm.com/read/413125/7128433

m morlet.m

function [psi,x] = morlet(lb,ub,nb,center_time,delt,amp,f) x = linspace(lb,ub,nb); % wavelet support. %psi = amp*exp(-((x-center_time).^2)/delt) .* cos(2*pi*(x-center_time)); %%%correct
www.eeworm.com/read/443373/7633995

bmp morlet.bmp

www.eeworm.com/read/195877/8125076

m morlet.m

function[out]=morlet(x) out=cos(1.75*x).*exp(-(x.^2)/2);
www.eeworm.com/read/136754/13362557

m morlet.m

function mo = morlet(a,ts,int) %mo = morlet(a,ts,int) creates a morlet wavelet dilated to a factor 'a'. %Time axis goes from -int to int in steps of ts, the sampling interval. %Note: a MUST NOT be
www.eeworm.com/read/345213/11826367

html morlet.html

R: Morlet Wavelets
www.eeworm.com/read/201202/15413566

sci morlet.sci

function [psix,x]=Morlet(varargin) [lhs,rhs]=argn(); if (rhs>3)|(rhs2, error('*');end x = linspace(varargin(1:3)); psix = exp(-(x.^2)/2) .* cos(5*x); endfunc