代码搜索:Encode
找到约 8,258 项符合「Encode」的源代码
代码结果 8,258
www.eeworm.com/read/383610/8932711
m pcm_encode.m
function [out]=pcm_encode(UniS)
SLENGTH = length(UniS)
PCMout=zeros(1,SLENGTH);
bytesOut=zeros(3,SLENGTH);
for i = 1:SLENGTH,
Byte=zeros(1,3);
% Determine the Sign ('+' => 0; '-' =>
www.eeworm.com/read/427507/8939111
m encode_bit.m
function [output, state] = encode_bit(g, input, state)
% Copyright 1996 Matthew C. Valenti
% MPRG lab, Virginia Tech
% for academic use only
% This function takes as an input a single bit to be
www.eeworm.com/read/186304/8946014
bak encode.v.bak
/*****************************************/
/** 8bit RISC MCU desing **/
/** encode module **/
/** BY yuzhijie **/
/** 2006.10.2
www.eeworm.com/read/427380/8948896
m rsc_encode.m
function y = rsc_encode(g, x, terminated)
% Copyright Nov. 1998 Yufei Wu
% MPRG lab, Virginia Tech.
% for academic use only
% encodes a block of data x (0/1)with a recursive systematic
% convolutiona
www.eeworm.com/read/427380/8948917
m encode_bit.m
function [output, state] = encode_bit(g, input, state)
% Copyright 1996 Matthew C. Valenti
% MPRG lab, Virginia Tech
% for academic use only
% This function takes as an input a single bit to be encod
www.eeworm.com/read/186095/8960215
m rsc_encode.m
function y = rsc_encode(g, x, terminated)
% Copyright Nov. 1998 Yufei Wu
% MPRG lab, Virginia Tech.
% for academic use only
% encodes a block of data x (0/1)with a recursive systematic
% convolutiona
www.eeworm.com/read/186095/8960222
m rsc_encode.m
function y = rsc_encode(g, x, terminated)
% Copyright Nov. 1998 Yufei Wu
% MPRG lab, Virginia Tech.
% for academic use only
% encodes a block of data x (0/1)with a recursive systematic
% convolutiona
www.eeworm.com/read/283821/8986911
c encode_rs.c
/* Reed-Solomon encoder
* Copyright 2002, Phil Karn, KA9Q
* May be used under the terms of the GNU General Public License (GPL)
*/
#include
#ifdef FIXED
#include "fixed.h"
#elif defined
www.eeworm.com/read/382388/9032465
c encode27.c
/* Encode standard input in the r=1/2 K=7 standard convolutional code.
* Encoded output is big-endian, one byte per symbol, with 1 represented
* by 255 and 0 by 0
*/
#include
#include "v
www.eeworm.com/read/382388/9032485
c encode37.c
/* Encode standard input in the r=1/3 K=7 standard convolutional code.
* Encoded output is big-endian, one byte per symbol, with 1 represented
* by 255 and 0 by 0
*/
#include
#include "v