代码搜索:Convolution
找到约 1,402 项符合「Convolution」的源代码
代码结果 1,402
www.eeworm.com/read/160243/10551446
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/351998/10589088
m gmm_convolve.m
function gr = gmm_convolve(g1, g2)
% Convolution for addition of two random variables
D = size(g1.x, 1);
M = size(g1.x, 2);
N = size(g2.x, 2);
R = M*N;
gr.x = zeros(D,R);
gr.P = zeros(D,D,R
www.eeworm.com/read/350857/10705713
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/274679/10858489
m sepconv2preserveenergy.m
% sepConv2PreserveEnergy - energy preserving 2d convolution with separable filter
%
% result = sepConv2PreserveEnergy(yFilter,xFilter,data)
%
% Convolves data with the separable filters xFilter
www.eeworm.com/read/416230/11037589
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/463619/7177406
asv smooth.asv
function J = smooth(I,s)
%滤波器
h=fspecial('gaussian',ceil(4*s),s);
%convolution
J=imfilter(I,h);
return;
www.eeworm.com/read/443241/7635799
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/442985/7640416
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/441886/7663243
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/377646/7715231
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
%