代码搜索:convolution
找到约 1,402 项符合「convolution」的源代码
代码结果 1,402
www.eeworm.com/read/284604/8914139
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/426783/8999677
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/283489/9017530
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/184563/9093429
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/180485/9305453
m program_03_05.m
% Program 3_5
% Linear Convolution Via the DFT
%
% Read in the two sequences
colordef black;
x = input('Type in the first sequence = ');
h = input('Type in the second sequence = ');
% Determi
www.eeworm.com/read/365862/9843056
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/169081/9881536
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/167781/9952810
m program_03_05.m
% Program 3_5
% Linear Convolution Via the DFT
%
% Read in the two sequences
colordef black;
x = input('Type in the first sequence = ');
h = input('Type in the second sequence = ');
% Determi
www.eeworm.com/read/362213/10012441
m ex3_10.m
% Example 3.10
%
% numerical convolution of a continuous time system
%
% The example is run with 3 different values of T.
% For each value of T, the numerical convolution is
% compared to the
www.eeworm.com/read/166516/10017146
m demix.m
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function y = demix(Wt,x)
% this is very slow, better would be something
% like overlap-save, see Haykin or Oppenheim/Schaefer
% it is a