代码搜索:Encode

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

代码结果 8,258
www.eeworm.com/read/375419/9360566

m turbo_encode.m

function [z,alpha]=turbo_encode(x,N,g,puncture) % clc % clear % puncture=0; % N=10; % g=[1 1 1;1 0 1]; % x=round(rand(1,N)); [alpha,S]=H_S_Random(N); %%%% 交织 x1=x(alpha); y(1,:)=x; y(2,:) =
www.eeworm.com/read/178871/9383072

m rsc_encode.m

function y = rsc_encode(g, x, terminated) [n,K] = size(g); m = K - 1; if terminated>0 L_info = length(x); L_total = L_info + m; else L_total = length(x); L_info = L_total - m; end % initi
www.eeworm.com/read/178871/9383088

m encode_bit.m

function [output, state] = encode_bit(g, input, state) % the rate is 1/n % k is the constraint length % m is the amount of memory [n,k] = size(g); m = k-1; % determine the next output bit for i=1:n
www.eeworm.com/read/178304/9408850

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/178304/9408861

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/373970/9426489

c encode_blockmex.c

/* Convolutional Encoder pass in generating polynomials g m-by-3 (m=1 to 7) outputs encoded bitstream written by Joe Williams - Southern Methodist University as ugrad, now Stanford grad st
www.eeworm.com/read/373970/9426507

m gray_encode.m

function out=gray_encode(in) %gray code for 16PSK for i=1:length(in) if in(i)==0 out(i)=0; elseif in(i)==1 out(i)=1; elseif in(i)==2 out(i)=3; elseif in(i)==3 out(i)=2; elseif in(i)==
www.eeworm.com/read/373916/9427583

c ilbc_encode.c

/****************************************************************** iLBC Speech Coder ANSI-C Source Code iLBC_encode.c Copyright (C) The Internet Societ
www.eeworm.com/read/373916/9427642

h ilbc_encode.h

/****************************************************************** iLBC Speech Coder ANSI-C Source Code iLBC_encode.h Copyright (C) The Internet Soc