代码搜索:Convolution
找到约 1,402 项符合「Convolution」的源代码
代码结果 1,402
www.eeworm.com/read/355484/10262123
m compconv2.m
% Program 5-10
% compconv2.m
% Function to perform convolution between signal and filter.
% Programmed by yixiongshu,2006.8.9
function [iout,qout]=compconv2(idata,qdata,filter)
% : filter tap
www.eeworm.com/read/161485/10404155
c atrous.c
/*
2D Continuous Wavelet Packet Transform package
(c) 2002-2005 Let It Wave, all rights reserved
*/
#include "cwpt2.h"
/*--------------------------------------------------------------*/
/* Symmetr
www.eeworm.com/read/352445/10551988
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/350761/10712665
m gd.m
function g = gD( f, scale, ox, oy )
% Gaussian (Derivative) Convolution
K = ceil( 3 * scale );
x = -K:K;
Gs = exp( - x.^2 / (2*scale^2) );
Gs = Gs / sum(Gs
www.eeworm.com/read/416230/11037493
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/468647/6986177
m idwt.m
function w = Idwt(x,h,L);
% w = Idwt(x,h,L);
%
% Discrete Orthogonal Wavelet Transform
%
% Input
% x : data
% h : lowpass filter
% L : number of levels (2^L must divide length(x))
%
% Example
%
www.eeworm.com/read/281772/7087058
cpp ctconv_reconstuct.cpp
// Plotting.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include
#include
#include
#include
#include
#
www.eeworm.com/read/199778/7822997
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/199774/7823230
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/145478/12720964
h convolve.h
/*
********************************************************************************
*
* GSM AMR-NB speech codec R98 Version 7.6.0 December 12, 2001
* R99 Ve