代码搜索:Convolution

找到约 1,402 项符合「Convolution」的源代码

代码结果 1,402
www.eeworm.com/read/177244/9464089

m conv_m.m

function[y,ny]=conv_m(x,nx,h,nh) % y = convolution result % ny = support of y % x = first signal on support nx % h = second signal on support nh nyb = nx(1)+nh(1); nye = nx(length(x))+nh(length(
www.eeworm.com/read/167781/9952790

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/362152/10015640

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/165851/10049033

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/360770/10079014

m e1052.m

%---------------------------------------------------------------- % Example 10.5.2: Convolution %---------------------------------------------------------------- % Initialize clc clear
www.eeworm.com/read/360245/10105926

cpp iplconvolve.cpp

/////////////////////////////////////////////////////////////////////////// // // NAME // Convolve.cpp -- separable and non-separable linear convolution // // DESIGN NOTES // This version of t
www.eeworm.com/read/163777/10145812

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/359212/10161272

m kdgauss.m

%KDGAUSS Derivative of Gaussian kernel % % k = kdgauss(sigma) % k = kdgauss(sigma, w) % % Returns a kernel a x-derivative of Gaussian, this is a convolution % of a Gaussian smoothing kernel with a [-1
www.eeworm.com/read/357506/10208379

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/355485/10262005

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