代码搜索:Convolution

找到约 1,402 项符合「Convolution」的源代码

代码结果 1,402
www.eeworm.com/read/303772/13809573

m tconv.m

function h=tconv(f,g) %TCONV Twisted convolution % Usage: h=tconv(f,g); % % TCONV(f,g) computes the twisted convolution of the square matrices % f and g. % % % Let h=tconv(f,g) for f,g being
www.eeworm.com/read/152024/6334050

m convprod.m

function Y = convProd(X,H) % CONVPROD Product, not sum, convolution. Note that H must be 3x3. [xrows,xcols] = size(X); Y = zeros(xrows,xcols); for i=2:(xrows-1) for j=2:(xcols-1) [junk1,
www.eeworm.com/read/488306/6491874

cpp pyw.cpp

#include #include #include #define mm 200 //原数据的节点数 #define pi 3.1415926 #define M 2.0 //M为最大波峰与最大波谷绝对值的比值,取2.0或1.5 #define L 31 // 雷克子波长度 #define t0 0.002 // t0为
www.eeworm.com/read/482678/6621220

m contents.m

% Image Registration Tools. % Last update: 2/9/99 % Authors: David Heeger, heeger@stanford.edu % Oscar Nestares, oscar@white.stanford.edu % % See README file for brief description. %
www.eeworm.com/read/404623/11481371

h boxfilter.h

/////////////////////////////////////////////////////////////////////////// // // NAME // BoxFilter.h -- separable box filter (moving average convolution) // // SPECIFICATION // void BoxFilter
www.eeworm.com/read/404623/11481394

h convolve.h

/////////////////////////////////////////////////////////////////////////// // // NAME // Convolve.h -- separable and non-separable linear convolution // // SPECIFICATION // void Convolve(CIma
www.eeworm.com/read/154760/11928346

m dtconhlp.m

function dtconhlp % DTCONHLP Help file for DTCONGUI % ADSP Toolbox: Version 2.0 % For use with "Analog and Digital Signal Processing", 2nd Ed. % Published by PWS Publishing Co. % % Ashok Am
www.eeworm.com/read/154760/11928996

m convmat.m

function y =convmat(x,n) % CONVMAT Circulant matrix for periodic convolution. % % Y = CONVMAT(X,N) returns the NxN circulant matrix for X % X = array or vector % N = size of square matrix [Defa
www.eeworm.com/read/154760/11929032

m converr.m

% ADSP Toolbox: Version 2.0 % For use with "Analog and Digital Signal Processing", 2nd Ed. % Published by PWS Publishing Co. % % Ashok Ambardar, EE Dept. MTU, Houghton, MI 49931, USA % http://
www.eeworm.com/read/222445/14689791

m fresnel.m

%菲涅耳积分卷积方法 function [f1,dx1,dy1,x1,y1] = fresnel(f0,M,N,dx0,dy0,z,lambda) k=2*pi/lambda; du=1./(M*dx0); dv=1./(N*dy0); u=ones(N,1)*[0:M/2-1 -M/2:-1]*du; %Note order of points