代码搜索:Encode

找到约 8,258 项符合「Encode」的源代码

代码结果 8,258
www.eeworm.com/read/475366/6779069

m encode_bit.m

function [output, state] = encode_bit(g, input, state) % This function takes as an input a single bit to be encoded, % as well as the coeficients of the generator polynomials and % the current
www.eeworm.com/read/475535/6790886

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/475535/6790894

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/475543/6790909

m rsc_encode.m

function y = rsc_encode(g, x, ending) % y = rsc_encode(g, x, ending) % % Copyright Nov. 1998 Yufei Wu % MPRG lab, Virginia Tech. % for academic use only % % Encodes a block of data x (0/1)with
www.eeworm.com/read/475543/6790914

m turbo_encode.m

function [seqout, alpha] = turbo_encode(seqin, len, key, puncture, gnum) % [seqout, alpha] = turbo_encode(seqin, len, key [, puncture, gnum]) % % Encode binary sequence using turbo codes. % % Inp
www.eeworm.com/read/475543/6790918

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
www.eeworm.com/read/475347/6796728

m rsc_encode.m

function y = rsc_encode(g, x, terminated) % encodes a block of data x (0/1)with a recursive systematic % convolutional code with generator vectors in g, and % returns the output in y (0/1). % if
www.eeworm.com/read/475347/6796737

m encode_bit.m

function [output, state] = encode_bit(g, input, state) % This function takes as an input a single bit to be encoded, % as well as the coeficients of the generator polynomials and % the current
www.eeworm.com/read/474282/6817421

c gsm_encode.c

/* * Copyright 1992 by Jutta Degener and Carsten Bormann, Technische * Universitaet Berlin. See the accompanying file "COPYRIGHT" for * details. THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.
www.eeworm.com/read/473846/6842061

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);