代码搜索:convolution
找到约 1,402 项符合「convolution」的源代码
代码结果 1,402
www.eeworm.com/read/480745/6661229
m conv_m.m
function [y,ny]=conv_m(x,nx,h,nh)
%Modified convolution routine for signal processing
%ny=support of y;
nyb=nx(1)+nh(1);
nye=nx(length(x))+nh(length(h));
ny=[nyb:nye];
y=conv(x,h);
www.eeworm.com/read/480526/6665449
cpp juanji.cpp
/*-------------------------------------------*
* 离散卷积 *
*-------------------------------------------*/
#include
float convolute(float* f, /*离散单边信号f的序列
www.eeworm.com/read/409205/11341481
m convolm.m
function H = convolm(x, num_zeros, pad)
%CONVOLM Make convolution matrix, optionally padded with zeros
%-------
% Usage: H = convolm(X, P, )
%
% H : convolution matrix with P
www.eeworm.com/read/404623/11481369
cpp boxfilter.cpp
///////////////////////////////////////////////////////////////////////////
//
// NAME
// BoxFilter.cpp -- separable box filter (moving average convolution)
//
// DESIGN NOTES
// Two different
www.eeworm.com/read/154760/11928561
m demoprog.m
function demoprog
%DEMOPROG Demonstrations in the ADSP Toolbox for MATLAB v4
% ADSP Toolbox: Version 2.0
% For use with "Analog and Digital Signal Processing", 2nd Ed.
% Published by PWS Publ
www.eeworm.com/read/254742/12121145
m program_11_11.m
% Program 11_11
% Computation of Linear Convolution Using DFT
%
g = input('Type in first sequence = ');
h = input('Type in second sequence = ');
ga = [g zeros(1,length(h)-1)];
ha = [h zeros(1,le
www.eeworm.com/read/150725/12268826
m sigconv.m
function [y,ny]=sigconv(x,nx,h,nh)
%Implements signal convolution
nyb=nx(1)+nh(1);
nye=nx(length(x))+nh(length(h));
ny=[nyb:nye];
y=conv(x,h);
www.eeworm.com/read/150701/12270657
mink readme.mink
mink.c Code for computing Minkowski convolution.
Makefile make file to compile with gcc.
i.0-5 Sample input files
README.mink This file.
www.eeworm.com/read/231449/14233559
m program_8_11.m
% Program 8_11
% Computation of Linear Convolution Using DFT
%
g = input('Type in first sequence = ');
h = input('Type in second sequence = ');
ga = [g zeros(1,length(h)-1)];
ha = [h zeros(1,len
www.eeworm.com/read/215497/15059478
m program_11_5.m
% Program 11_11
% Computation of Linear Convolution Using DFT
%
g = input('Type in first sequence = ');
h = input('Type in second sequence = ');
ga = [g zeros(1,length(h)-1)];
ha = [h zeros(1,le