代码搜索:Encode

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

代码结果 8,258
www.eeworm.com/read/196018/8118335

m encode_main.m

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%% encode %%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%% by zzf %%%
www.eeworm.com/read/295862/8136154

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/295862/8136190

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/195567/8141632

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/195567/8141654

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/247236/12671909

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/247236/12671928

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/246923/12697876

m ldpc_encode.m

function [u,P,rearranged_cols]=ldpc_encode(s,H) % 高斯消元 %设H=[A | B] ==========> [I | P] % u=[c | s] %∵ H*u' = u*H' = 0 %代入得: % _ _ % | c' | % [I | P]| | = 0
www.eeworm.com/read/246680/12713085

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/145046/12755123

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