代码搜索:Convolution
找到约 1,402 项符合「Convolution」的源代码
代码结果 1,402
www.eeworm.com/read/360245/10105931
h convolve.h
///////////////////////////////////////////////////////////////////////////
//
// NAME
// Convolve.h -- separable and non-separable linear convolution
//
// SPECIFICATION
// void Convolve(CIma
www.eeworm.com/read/356914/10219149
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/425784/10322982
m seperatekernel.m
%%
% This function seperates a 2D matrix into its X and Y components if by
% definition the kernel is seperable (rank==1).
% Sample Usage:
% G=fspecial('gaussian',3); % Create a 3x3 Gaussia
www.eeworm.com/read/278816/10504403
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/352445/10552040
m cconv.m
function y = cconv(x, h)
% lconv -- perform a circular convolution with ffts
%
% Usage
% y = cconv(x, h)
%
% Inputs
% x, h input vectors (must have the same length)
%
% Outputs
% y
www.eeworm.com/read/160223/10555532
mdl ch_02_25.mdl
Model {
Name "ch_02_25"
Version 4.00
SampleTimeColors off
LibraryLinkDisplay "none"
WideLines off
ShowLineDimensions off
ShowPortDataTypes off
ShowStorageClas
www.eeworm.com/read/159946/10585119
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/159424/10650564
c concorr.c
#include
#include
#define Nx 5
#define Nh 3
#define Length Nx+Nh-1
/*************计算两个序列的线性卷积*******************************/
void convolution(int x[Nx] , int h[Nh]
www.eeworm.com/read/270936/11019286
m conv_encoder.m
function conv=Conv_Encoder(info)
%This is the Convolution Encoder. We pass our data (192 bit, a 20ms frame)into the Convolution Encoder R=1/2, k=9 R=input bits/output bits. K=9 means 9 stage shift
www.eeworm.com/read/123298/6960086
m mka_m_series.m
% 产生生成矩阵A;
%%% there is 4095 points of the m series;
clear all;
A=zeros(12,12);
for i=1:11
A(i,i+1)=1;
end;
A(12,1)=1; A(12,7)=1; A(12,9)=1; A(12,12)=1;
% originate the vector;