代码搜索:convolution
找到约 1,402 项符合「convolution」的源代码
代码结果 1,402
www.eeworm.com/read/493456/6393603
m ovrlpsav.m
function [y] = ovrlpsav(x,h,N)
% Overlap-Save method of block convolution
% ----------------------------------------
% [y] = ovrlpsav(x,h,N)
% y = output sequence
% x = input sequence
% h = impu
www.eeworm.com/read/493456/6393731
m ex051500.m
% Chapter 05: Example 05.14: Circular convolution example
%
% a) 5-point circular convolution
x1 = [1,2,2]; x2 = [1,2,3,4];
y = circonvt(x1,x2,5)
% b) 6-point circular convolution
x1 = [1,2,2];
www.eeworm.com/read/480430/6664006
m m_conv.m
%m_conv is an extension to MATLAB's conv, where more
%arguments are allowed, which means that under such
%the convolution of more than two vectors can be
%obtained at the same time.
%Copyright
www.eeworm.com/read/156653/11786041
m ex051500.m
% Chapter 05: Example 05.14: Circular convolution example
%
% a) 5-point circular convolution
x1 = [1,2,2]; x2 = [1,2,3,4];
y = circonvt(x1,x2,5)
% b) 6-point circular convolution
x1 = [1,2,2]; x2 = [
www.eeworm.com/read/156653/11786458
m conv_m.m
function [y,ny] = conv_m(x,nx,h,nh)
% Modified convolution routine for signal processing
% --------------------------------------------------
% [y,ny] = conv_m(x,nx,h,nh)
% y = convolution result
% n
www.eeworm.com/read/156653/11786545
m conv_tp.m
function [y,H]=conv_tp(h,x)
% Linear Convolution using Toeplitz Matrix
% ----------------------------------------
% [y,H] = conv_tp(h,x)
% y = output sequence in column vector form
% H = Toeplitz matr
www.eeworm.com/read/156653/11786569
m ovrlpsav.m
function [y] = ovrlpsav(x,h,N)
% Overlap-Save method of block convolution
% ----------------------------------------
% [y] = ovrlpsav(x,h,N)
% y = output sequence
% x = input sequence
% h = impulse re
www.eeworm.com/read/154760/11928599
m cnvpl35n.m
function cnvplt35(xs,ys,tx,ty,ts)
%Support file for CONVPLOT for use with MATLAB 3.5
% ADSP Toolbox: Version 2.0
% For use with "Analog and Digital Signal Processing", 2nd Ed.
% Published by
www.eeworm.com/read/257196/11944758
m conv_m.m
function [y,ny] = conv_m(x,nx,h,nh)
% Modified convolution routine for signal processing
% ---------------------------------
% [y,ny] = conv_m(x,nx,h,nh)
% y = convolution result
% ny = support
www.eeworm.com/read/342845/11995714
m ex051500.m
% Chapter 05: Example 05.14: Circular convolution example
%
% a) 5-point circular convolution
x1 = [1,2,2]; x2 = [1,2,3,4];
y = circonvt(x1,x2,5)
% b) 6-point circular convolution
x1 = [1,2,2];