代码搜索:Convolution
找到约 1,402 项符合「Convolution」的源代码
代码结果 1,402
www.eeworm.com/read/134087/14009034
c conv1.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;
www.eeworm.com/read/112799/15476531
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;
www.eeworm.com/read/108859/15573696
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/108859/15573846
m convmat.m
function y =convmat(x,n)
% CONVMAT Circulant matrix for periodic convolution.
%
% Y = CONVMAT(X,N) returns the NxN circulant matrix for X
% X = array or vector
% N = size of square matrix [Defa
www.eeworm.com/read/108859/15573892
m converr.m
% ADSP Toolbox: Version 2.0
% For use with "Analog and Digital Signal Processing", 2nd Ed.
% Published by PWS Publishing Co.
%
% Ashok Ambardar, EE Dept. MTU, Houghton, MI 49931, USA
% http://
www.eeworm.com/read/108859/15574049
m examp28.m
clc,echo on
%EXAMPLE 28
x=[1 2 -1 0 2 3];h=2:-1:-3; % 1 period of x and h
y1=convp(x,h); % Periodic convolution (1 period)
dtplot(0:length(y1)-1,y1,'o'),
www.eeworm.com/read/108818/15574839
c fconvol.c
/*----------------------Megawave2 Module-----------------------------------*/
/*mwcommand
name = {fconvol};
version = {"1.1"};
author = {"Jacques Froment"};
function = {"2D-direct convolution
www.eeworm.com/read/169511/9853750
c experiment for fft convolution using overlap-add method.c
/*
exp7d.c - Experiment for FFT convolution
using Overlap-Add method
*/
#include "icomplex.h"
#include "input7.dat" /* This is the data file used in Chapter 5 */
www.eeworm.com/read/433250/8537422
m lconv.m
function y = lconv(x, h)
% lconv -- perform a linear convolution with ffts
%
% Usage
% y = lconv(x, h)
%
% Inputs
% x, h input vectors
%
% Outputs
% y the linear convolution of x an
www.eeworm.com/read/433250/8537569
m lconv.m
function y = lconv(x, h)
% lconv -- perform a linear convolution with ffts
%
% Usage
% y = lconv(x, h)
%
% Inputs
% x, h input vectors
%
% Outputs
% y the linear convolution of x an