代码搜索:Convolution
找到约 1,402 项符合「Convolution」的源代码
代码结果 1,402
www.eeworm.com/read/474583/6812971
svn-base perform_blurring.m.svn-base
function M = perform_blurring(M, sigma, options)
% perform_blurring - gaussian blurs an image
%
% M = perform_blurring(M, sigma, options);
%
% M is the original data
% sigma is the width of blu
www.eeworm.com/read/474583/6812992
svn-base perform_blurring.sci.svn-base
function M = perform_blurring(M, sigma, options)
// perform_blurring - gaussian blurs an image
//
// M = perform_blurring(M, sigma, options);
//
// M is the original data
// sigma is the width
www.eeworm.com/read/474583/6813092
sci perform_blurring.sci
function M = perform_blurring(M, sigma, options)
// perform_blurring - gaussian blurs an image
//
// M = perform_blurring(M, sigma, options);
//
// M is the original data
// sigma is the width
www.eeworm.com/read/106251/15642583
h execute_data.h
/*****************************************************************************************
* execut_data.h
*
* jiangle 2004/05
*
* header of execut_data.c
*
*save data from encode and decode
www.eeworm.com/read/405549/11460677
m manchester_iqconv.m
function [iport,tnext] = manchester_iqconv(oport,tnow,portinfo)
% MANCHESTER_IQCONV Test bench for VHDL IQ convolution
% [IPORT,TNEXT]=MANCHESTER_IQCONV(OPORT,TNOW,PORTINFO)
% IQ Convolver of
www.eeworm.com/read/167045/9983292
m conv2d.m
function Ku = conv2d(u,k_hat)
% Ku = conv2d(u,k_hat)
%
% Use 2D FFT to compute convolution u*k. k_hat= fft2(k).
m = max(size(u));
m2 = 2*m;
ze = real(ifft2( ((fft2(u,m2,m2)) .* k_hat),
www.eeworm.com/read/278232/10558273
vhd viterbi.vhd
--------------------------------------------------------------------------------
-- This file is owned and controlled by Xilinx and must be used --
-- solely for design, simulation
www.eeworm.com/read/417486/10987882
m siso1_4_trl.m
clc;
clear all;
noofdata=64;
noofblock=1;
nooftaps=64;
qpskdata=complex(randsrc(noofblock,noofdata),randsrc(noofblock,noofdata));
s1=qpskdata(1,:);
qpskdata=reshape(qpskdata,noofdata*noofbloc
www.eeworm.com/read/378380/9233207
m deconvolution.m
% viterbi decode
% 07.10.31
function deconvolution_sequence = deconvolution(convolution_sequence)
% route = zeros(4,20);
t_output = convolution_sequence;
a = size(convolution_sequence);
www.eeworm.com/read/177025/9474119
h files.h
//Environment
#include "../env/complex.c"
#include "../env/binaryset.c"
#include "../env/utility.c"
//FEC Encoder
#include "../fec_enc/scrambler.c"
#include "../fec_enc/convolution_encoder.c"
#includ