代码搜索:Encode
找到约 8,258 项符合「Encode」的源代码
代码结果 8,258
www.eeworm.com/read/171831/9733647
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/269028/11110867
m encode_81.m
%(8,1)码编码程序
function [output] = encode_81(input)
n=length(input);
if input(1)==0
output=zeros(1,8);
elseif input(1)==1
output=ones(1,8);
end
for i=2:n
if input(i)==0
outp
www.eeworm.com/read/269028/11110869
m encode_87.m
%(8,7)码的编码
function [output] = encode_87(input)
n=length(input)/7;
u=zeros(1,n*8);
j=1;
for i=1:7:n*7
u(j)=input(i);
u(j+1)=input(i+1);
u(j+2)=input(i+2);
u(j+3)=input(i+3);
u(j+4)=inpu
www.eeworm.com/read/268261/11146709
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/268261/11146753
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/268255/11148417
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/268255/11148445
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/268219/11149311
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
% convol
www.eeworm.com/read/268219/11149332
doc encode_bit.doc
www.eeworm.com/read/268219/11149344
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