代码搜索:Convolution
找到约 1,402 项符合「Convolution」的源代码
代码结果 1,402
www.eeworm.com/read/475731/6776770
m tailscrap.m
function maxabsdiff=tailscrap()
% test code for circular convolution with the scrapped portion
% at the tail of the buffer, rather than the front
%
% The idea is to rotate the zero-padded h (impulse
www.eeworm.com/read/471637/6887596
h img_conv_3x3.h
/* ======================================================================== */
/* TEXAS INSTRUMENTS, INC. */
/*
www.eeworm.com/read/293552/8287305
m exa031101_fftfilt.m
%----------------------------------------------------------------------------
% exa031001_fftfilt.m, for example 3.11.1
% to test fftfilt.m,and to finish the convolution of a long sequence with
%
www.eeworm.com/read/414010/11133480
asm linconv.asm
************************************************************
*Linear Convolution
*-----------------------------------------------------------
*Objective:
* Implement linear convolution by MACMZ
*
www.eeworm.com/read/334931/12561384
m program_5_4.m
% Program 5_4
% Linear Convolution Via the DFT
%
% Read in the two sequences
x = input('Type in the first sequence = ');
h = input('Type in the second sequence = ');
% Determine the length of th
www.eeworm.com/read/334931/12561727
m program_5_4.m
% Program 5_4
% Linear Convolution Via the DFT
%
% Read in the two sequences
x = input('Type in the first sequence = ');
h = input('Type in the second sequence = ');
% Determine the length of th
www.eeworm.com/read/135728/13906276
m exa031101_fftfilt.m
%----------------------------------------------------------------------------
% exa031001_fftfilt.m, for example 3.11.1
% to test fftfilt.m,and to finish the convolution of a long sequence with
%
www.eeworm.com/read/237957/13917976
h convdec.h
//*****************************************************************************
// ConvDec.h Prototypes of convolution-decimation froutines
//**************************************
www.eeworm.com/read/202967/15368725
m exa031101_fftfilt.m
%----------------------------------------------------------------------------
% exa031001_fftfilt.m, for example 3.11.1
% to test fftfilt.m,and to finish the convolution of a long sequence with
%
www.eeworm.com/read/107176/15612155
m s4rout3.m
% Routine 4.3 encryption
B = rand(m,n); % choose a blurring matrix
save blur B
% blur the image via circular convolution:
Xhat = fft2(X);
Bhat = fft2(B);
Yhat = Bhat.