代码搜索:Encode
找到约 8,258 项符合「Encode」的源代码
代码结果 8,258
www.eeworm.com/read/432860/8567259
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/288989/8588236
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/288989/8588323
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/388089/8636487
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/287806/8668255
c r_encode.c
/*
R_ENCODE.C - RFC 1113 encoding and decoding routines
Copyright (c) J.S.A.Kapp 1994 - 1996.
RSAEURO - RSA Library compatible with RSAREF(tm) 2.0.
All functions prototypes are the Sa
www.eeworm.com/read/387347/8691648
txt turbo-encode.txt
% x ------信息源0 1 行向量
% g ------生成矩阵 g= 1 1 1
% 1 0 1 等
% [n,k]=size(g)
% m=k-1
% Alpha ---交织器 (交织器大小为 length(x)+m)
% puncture----是否凿孔 0--凿孔,码率1/2
%
www.eeworm.com/read/287188/8711701
c arithmetic_encode.c
/* ARITHMETIC ENCODING ALGORITHM. */
/* (C) Copyright 1987, Radford Neal.
Permission is granted to use this program for research purposes. Please
note that this code was written to provide pe
www.eeworm.com/read/431037/8712073
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/386257/8759444
m gen_encode.m
function P = gen_encode(X,Nb,l,u)
%将群体X的状态编码为二进制数组P
Np=size(X,1); %群体大小
N = length(Nb); %变量(状态)维数
for n = 1:Np
b2 = 0;
for m = 1:N
b1 = b2+1;
b2 = b2 + Nb(m);
www.eeworm.com/read/385990/8772827
h encode_rs.h
/* The guts of the Reed-Solomon encoder, meant to be #included
* into a function body with the following typedefs, macros and variables supplied
* according to the code parameters:
* data_t - a ty