代码搜索:convolution
找到约 1,402 项符合「convolution」的源代码
代码结果 1,402
www.eeworm.com/read/216443/15006920
m pconv.m
function h=pconv(f,g,ctype)
%PCONV Periodic convolution
% Usage: h=pconv(f,g)
% h=pconv(ptype,f,g);
%
% PCONV(f,g) computes the periodic convolution of f and g. The convolution
% is
www.eeworm.com/read/475502/6790114
m dtconhlp.m
function dtconhlp
% DTCONHLP Help file for DTCONGUI
% ADSP Toolbox: Version 2.0
% For use with "Analog and Digital Signal Processing", 2nd Ed.
% Published by PWS Publishing Co.
%
% Ashok Am
www.eeworm.com/read/471637/6887516
c img_conv_3x3_c.c
/* ======================================================================== */
/* TEXAS INSTRUMENTS, INC. */
/*
www.eeworm.com/read/292863/8328535
m modulateflip.m
% [HFILT] = modulateFlipShift(LFILT)
%
% QMF/Wavelet highpass filter construction: modulate by (-1)^n,
% reverse order (and shift by one, which is handled by the convolution
% routines). This is
www.eeworm.com/read/292863/8328645
m modulateflip.m
% [HFILT] = modulateFlipShift(LFILT)
%
% QMF/Wavelet highpass filter construction: modulate by (-1)^n,
% reverse order (and shift by one, which is handled by the convolution
% routines). This is
www.eeworm.com/read/173799/9635313
m cconv.m
function y = cconv(x, h)
% lconv -- perform a circular convolution with ffts
%
% Usage
% y = cconv(x, h)
%
% Inputs
% x, h input vectors (must have the same length)
%
% Outputs
% y
www.eeworm.com/read/367204/9766037
m conv2c.m
function y = conv2c(x,h)
% Circular 2D convolution
x=wraparound(x,h);
y=conv2(x,h,'valid');
function y = wraparound(x, m)
% Extend x so as to wrap around on both axes, sufficient to allow a
www.eeworm.com/read/270032/11051079
c halfadap.c
/*==========================================================================*
* Halftoning using Space Filling Curve with adaptive clustering and *
* selective precipitation
www.eeworm.com/read/414010/11133488
log cc_build_debug.log
------------------------ 1-10 Convolution.pjt - Debug ------------------------
"c:\ti\c5500\cgtools\bin\cl55" -g -q -fr"C:/ti/myprojects/lab4/1-10 Convolution3/Debug" -d"_DEBUG" -@"Debug.lkf" "linc
www.eeworm.com/read/134087/14008976
c conv.c
/* conv.c - convolution of x[n] with h[n], resulting in y[n] */
#include /* defines max( ) and min( ) */
void conv(M, h, L, x, y)
double *h, *x, *y;