代码搜索:Convolution
找到约 1,402 项符合「Convolution」的源代码
代码结果 1,402
www.eeworm.com/read/160223/10555682
m conv_m.m
function [y,ny] = conv_m(x,nx,h,nh)
% Modified convolution routine for signal processing
% --------------------------------------------------
% [y,ny] = conv_m(x,nx,h,nh)
% y = convolution result
% n
www.eeworm.com/read/159946/10585180
c blockcon.c
/* blockcon.c - block convolution by overlap-add method */
void conv();
void blockcon(M, h, L, x, y, ytemp)
double *h, *x, *y, *ytemp; /* ytemp is tail of previous block */
int M,
www.eeworm.com/read/277188/10655398
c fir1.c
/* fir1.c -- (part)
*
* convolution of two 8 bit integer arrays a, b of length 400
* and 8 respectively.
*
* Rough pictorial description of the pr
www.eeworm.com/read/159329/10669577
c fir1.c
/* fir1.c -- (part)
*
* convolution of two 8 bit integer arrays a, b of length 400
* and 8 respectively.
*
* Rough pictorial description of the pr
www.eeworm.com/read/158750/10731419
m conv_m.m
function [y,ny] = conv_m(x,nx,h,nh)
% Modified convolution routine for signal processing
% --------------------------------------------------
% [y,ny] = conv_m(x,nx,h,nh)
% y = convolution result
% n
www.eeworm.com/read/158750/10731509
m conv_tp.m
function [y,H]=conv_tp(h,x)
% Linear Convolution using Toeplitz Matrix
% ----------------------------------------
% [y,H] = conv_tp(h,x)
% y = output sequence in column vector form
% H = Toeplitz matr
www.eeworm.com/read/158750/10731546
m ovrlpsav.m
function [y] = ovrlpsav(x,h,N)
% Overlap-Save method of block convolution
% ----------------------------------------
% [y] = ovrlpsav(x,h,N)
% y = output sequence
% x = input sequence
% h = impulse re
www.eeworm.com/read/271760/10982289
m m_conv.m
%m_conv is an extension to MATLAB's conv, where more
%arguments are allowed, which means that under such
%the convolution of more than two vectors can be
%obtained at the same time.
%Copyright
www.eeworm.com/read/417485/10987887
m test_regn2.m
clc;
clear all;
close all;
a=2;
noofdata=64;
noofblock=2;
nooftaps=64;
qpskdata=complex(randn(noofblock,noofdata),randn(noofblock,noofdata));
s1=qpskdata(1,:);
s2=qpskdata(2,:);
qpskdata=r
www.eeworm.com/read/271566/10989548
m m_conv.m
%m_conv is an extension to MATLAB's conv, where more
%arguments are allowed, which means that under such
%the convolution of more than two vectors can be
%obtained at the same time.
%Copyright