代码搜索:Encode

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

代码结果 8,258
www.eeworm.com/read/17885/764486

qmsg encode.fit.qmsg

{ "Info" "IQEXE_SEPARATOR" "" "Info: *******************************************************************" { } { } 3} { "Info" "IQEXE_START_BANNER_PRODUCT" "Fitter Quartus II " "Info: Running Quartu
www.eeworm.com/read/17885/764487

hdb encode.map.hdb

www.eeworm.com/read/17885/764488

xml encode.cbx.xml

www.eeworm.com/read/17885/764491

cdb encode.eco.cdb

www.eeworm.com/read/17885/764492

rpt encode.map.rpt

Analysis & Synthesis report for encode Fri Sep 23 21:17:25 2005 Version 5.0 Build 148 04/26/2005 SJ Full Version --------------------- ; Table of Contents ; --------------------- 1. Legal
www.eeworm.com/read/17885/764493

summary encode.fit.summary

Flow Status : Successful - Fri Sep 23 21:17:40 2005 Quartus II Version : 5.0 Build 148 04/26/2005 SJ Full Version Revision Name : encode Top-level Entity Name : encode Family : MAX7000S Device :
www.eeworm.com/read/17885/764494

summary encode.map.summary

Flow Status : Successful - Fri Sep 23 21:17:25 2005 Quartus II Version : 5.0 Build 148 04/26/2005 SJ Full Version Revision Name : encode Top-level Entity Name : encode Family : MAX7000S Device :
www.eeworm.com/read/18163/778383

m rsc_encode.m

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

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