代码搜索:Encode
找到约 8,258 项符合「Encode」的源代码
代码结果 8,258
www.eeworm.com/read/238891/13315968
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/238891/13316001
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/323103/13354793
m crc_encode.m
function crc_encode_scr=crc_encode(scr,poly)
[M N]=size(poly);
scrg=[scr zeros(1,N-1)];
[q r]=deconv(scrg,poly);
r=abs(r);
for i=1:length(r)
a=r(i);
if ( mod(a,2)== 0 )
r(i)=
www.eeworm.com/read/321480/13404177
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/321480/13404187
doc encode_bit.doc
www.eeworm.com/read/321480/13404196
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/321480/13404197
doc rsc_encode.doc
www.eeworm.com/read/320439/13427231
c r_encode.c
/* R_ENCODE.C - RFC 1113 encoding and decoding routines
*/
/* Copyright (C) RSA Laboratories, a division of RSA Data Security,
Inc., created 1991. All rights reserved.
*/
#include "glo
www.eeworm.com/read/317935/13493100
m rsc_encode.m
function y = rsc_encode(g, x, end1)
%x为输入序列,g为卷积码的生成多项式,y为编码后输出
%endl尾比特处理标志,如end1>0,有m个尾比特,编码至x最后一个比特到达最后一个寄存器;如end1
www.eeworm.com/read/317935/13493101
m encode_bit.m
function [output, state] = encode_bit(g, input, state)
[n,k] = size(g);
m = k-1;
for i=1:n
output(i) = g(i,1)*input;
for j = 2:k
output(i) = xor(output(i),g(i,j)*state(j-1));
end