代码搜索:convolution

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

代码结果 1,402
www.eeworm.com/read/342845/11996053

m circonvt.m

function y = circonvt(x1,x2,N) % N-point circular convolution between x1 and x2: (time-domain) % ------------------------------------------------------------- % [y] = circonvt(x1,x2,N) % y = outp
www.eeworm.com/read/255577/12072774

asv f_blockconv.asv

function [y,L,M,Q,N] = f_blockconv (h,x) % F_BLOCKCONV: Perform fast block convolution of two signals % % Usage: [y,L,M,Q,N] = f_blockconv (h,x) % % Entry: h = vector of length L c
www.eeworm.com/read/151561/12200852

m circonvt.m

function y=circonvt(x1,x2,N) % N - point circular convolution between x1 and x2:(time domain) % --------------------- % [y]=circonvt(x1,x2,N) % y=output sequence containing the circular convolutio
www.eeworm.com/read/230384/14291327

asv f_blockconv.asv

function [y,L,M,Q,N] = f_blockconv (h,x) % F_BLOCKCONV: Perform fast block convolution of two signals % % Usage: [y,L,M,Q,N] = f_blockconv (h,x) % % Entry: h = vector of length L c
www.eeworm.com/read/167185/5463316

3 convolv.3

.\" Copyright (c) 1987 Entropic Speech, Inc.; All rights reserved .\" @(#)convolv.3 1.4 06 May 1997 ESI .TH CONVOLV 3\-ESPSsp 06 May 1997 .ds ]W "\fI\s+4\ze\h'0.05'e\s-4\v'-0.4m'\fP\(*p\v'0.4m'\ Entro
www.eeworm.com/read/393394/8290372

m circonvt.m

%循环卷积 function y = circonvt(x1,x2,N) % N-point circular convolution between x1 and x2: (time-domain) % ------------------------------------------------------------- % [y] = circonvt(x1,x2,N) % y
www.eeworm.com/read/268260/11146790

m ex051400.m

% Chapter 05: Example 05.14: Circular convolution example % x1 = [1,2,2]; x2 = [1,2,3,4]; y = circonvt(x1,x2,4)
www.eeworm.com/read/268260/11147072

m circonvt.m

function y = circonvt(x1,x2,N) % N-point circular convolution between x1 and x2: (time-domain) % ------------------------------------------------------------- % [y] = circonvt(x1,x2,N) % y = outp
www.eeworm.com/read/201202/15413433

sci aconv.sci

function y = aconv(f,x) // aconv -- Convolution Tool for Two-Scale Transform // Usage // y = aconv(f,x) // Inputs // f filter // x 1-d signal // Outputs // y filtered r
www.eeworm.com/read/277188/10655403

c fir2.c

#include #define NROF_SAMPLES 400 void initialize( char *a, char *b ) { int i; for(i = 0; i < 8; i++) b[i] = i - 4; for(i = 0; i < 8; i++) a[i] = 0;