代码搜索:Convolution
找到约 1,402 项符合「Convolution」的源代码
代码结果 1,402
www.eeworm.com/read/196069/8116710
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
www.eeworm.com/read/196069/8116731
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
www.eeworm.com/read/196069/8116768
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/145494/12717917
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/317833/13495777
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/317833/13495923
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
www.eeworm.com/read/317833/13495932
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
www.eeworm.com/read/317833/13495950
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/316047/13531465
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/315069/13552920
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