代码搜索:Encode

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

代码结果 8,258
www.eeworm.com/read/383954/2605169

m ldpc_encode.m

function [out] = ldpc_encode(in,G,q) % function [out] = ldpc_encode(in,H,q) % encodes data from "in" using G over GFq % q = 2,4,8,16,32,64,128 or 256 % Please, make sure that the data you use is v
www.eeworm.com/read/379834/2666609

m rsc_encode.m

function y = rsc_encode(g, x, end1) %x为输入序列,g为卷积码的生成多项式,y为编码后输出 %endl尾比特处理标志,如end1>0,有m个尾比特,编码至x最后一个比特到达最后一个寄存器;如end1
www.eeworm.com/read/379834/2666613

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
www.eeworm.com/read/379055/2677329

m rsc_encode.m

function y = rsc_encode(g, x, end1) %x为输入序列,g为卷积码的生成多项式,y为编码后输出 %endl尾比特处理标志,如end1>0,有m个尾比特,编码至x最后一个比特到达最后一个寄存器;如end1
www.eeworm.com/read/379055/2677333

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
www.eeworm.com/read/378627/2683509

hpp encode_decode.hpp

// Copyright (C) 2004 Arkadiy Vertleyb // Use, modification and distribution is subject to the Boost Software // License, Version 1.0. (http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_TYPEOF_ENCO
www.eeworm.com/read/373903/2756747

h ilbc_encode.h

//A.2 iLBC_encode.h /****************************************************************** iLBC Speech Coder ANSI-C Source Code iLBC_encode.h Copyrigh
www.eeworm.com/read/373903/2756752

cxx ilbc_encode.cxx

//A.3 iLBC_encode.c /****************************************************************** iLBC Speech Coder ANSI-C Source Code iLBC_encode.c Copyright (
www.eeworm.com/read/373367/2762221

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/373367/2763392

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 #include #ifdef FIXED #include "f