代码搜索:Decoding
找到约 6,356 项符合「Decoding」的源代码
代码结果 6,356
www.eeworm.com/read/416320/11033407
txt readme.txt
The information on the code to be simulated must be input in the definition
file "def.h" in addition to using the corresponding generator matrix
Example:
A BCH(32,6,16) is to be simulated.
www.eeworm.com/read/416320/11033435
txt readme.txt
The information on the code to be simulated must be input in the definition
file "def.h" in addition to using the corresponding generator matrix
Example:
A BCH(32,6,16) is to be simulated.
www.eeworm.com/read/470503/6912409
h avcodec.h
#ifndef AVCODEC_H
#define AVCODEC_H
/**
* @file avcodec.h
* external api header.
*/
#ifdef __cplusplus
extern "C" {
#endif
#include "avutil.h"
#include /* size_t */
www.eeworm.com/read/436161/7069031
cpp huffman.cpp
/**************************************************************************
This file contains T.4 decoding data
Contents are :
a) two binary trees for decoding MH fax run-length codes
b) on
www.eeworm.com/read/436161/7069286
cpp huffman.cpp
/**************************************************************************
This file contains T.4 decoding data
Contents are :
a) two binary trees for decoding MH fax run-length codes
b) on
www.eeworm.com/read/203854/7117342
m main.m
% A main script to test the functions..
%
%
% Author: Brhanemedhn Tegegne
G=[[0,1,1;1,0,1;1,1,0;1,1,1],eye(4)];
sig=uint8(wavread('elen849_1.wav')*255);
%Play the original speech
wavplay(si
www.eeworm.com/read/165343/7143777
txt testrepcode.cc.txt
// Program: testrepcode.cc
// Test the repetion code performance
//
// Todd K. Moon, May 31, 2004
//
// Copyright 2004 by Todd K. Moon
// Permission is granted to use this program/data
// for educa
www.eeworm.com/read/165343/7143829
m plotconprob.m
% plot the bounds on performance for a convolutianal code.
% use T(D,N) = D^5 N/(1-2DN), so T(D) = D^5/(1-2D)
% dTdN = D^5/(1-2DN)^2 so dTdN_N=1 = D^5/(1-2D)^2
% for a R=1/2 code with dfree = 5;
www.eeworm.com/read/461294/7229919
m fubin.m
function out=fubin(in,bits,dvec);
%
% fubin.m
%
% function out=fubin(in,bits,dvec);
%
% Fast decoding from binary to decimal
% avoiding the use of loops
% dvec=vector of decimal mappings
%