代码搜索:Convolution
找到约 1,402 项符合「Convolution」的源代码
代码结果 1,402
www.eeworm.com/read/402876/11526756
m filt2dim.m
% Two-dimensional convolution filter
% Select the implementation from either the DIPimage toolbox or the SIGNAL processing toolbox
% DIPimage: http://www.ph.tn.tudelft.nl/DIPimage
function output
www.eeworm.com/read/152756/12087378
cpp tensortest.cpp
/* TensorTest.cpp Version from 05/05/01 17:07PM */
/* Contents ----------------------------------------------------------------**
**
www.eeworm.com/read/212232/15162628
c 5182.c
/* adp_sys_ident.c Adaptive system identification
using the LMS algorithm */
# include
# include
# define N0 48 /* Adaptive filt
www.eeworm.com/read/132772/14073802
m example8_4.m
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% example8_4.m - This program compare the linear convolution in time
% domain and fast convolution in frequency
www.eeworm.com/read/406012/11450987
pdf combining fft and circular convolution method for high dynamic gps signal acquisition.pdf
www.eeworm.com/read/433114/8545663
m myconvmtx.m
function matrix=myconvmtx(w,n)
% Function creates convolution matrix of the form
% || w1 w2 w3 0 0 0|
% || 0 w1 w2 w3 0 0|
% || 0 0 w1 w2 w3 0|
% || 0 0
www.eeworm.com/read/432386/8607311
m bsmooth.m
function s=bsmooth(a,w)
% Convolution-based boxcar smooth
% bsmooth(a,w) smooths vector a by a boxcar (rectangular window) of width w
% T. C. O'Haver, 1988.
v=boxcar(w);
S=conv(a,v);
startpoint=roun
www.eeworm.com/read/432386/8607316
m tsmooth.m
function s=tsmooth(Y,w)
% Convolution-based triangular smooth
% tsmooth(Y,w) smooths vector Y by a triangular function of halfwidth w
% T. C. O'Haver, 1988.
v=conv(boxcar(w),boxcar(w));
S=conv(Y,v)
www.eeworm.com/read/432381/8607516
m bsmooth.m
function s=bsmooth(a,w)
% Convolution-based boxcar smooth
% bsmooth(a,w) smooths vector a by a boxcar (rectangular window) of width w
% T. C. O'Haver, 1988.
v=boxcar(w);
S=conv(a,v);
startpoint=roun
www.eeworm.com/read/287843/8664631
m convnrz.m
% Convolution of NRZ rectangular pulses
function convnrz(action)
if (nargin