代码搜索:Encode
找到约 8,258 项符合「Encode」的源代码
代码结果 8,258
www.eeworm.com/read/310205/13655498
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/309833/13663903
ise encode_system.ise
www.eeworm.com/read/309349/13673614
pdf sparse-encode.pdf
www.eeworm.com/read/309349/13673655
ex-ldpc-encode
#!/bin/sh
# Example of how an LDPC code can be encoded using using sparse,
# dense, and mixed representations of the generator matrix. The dense
# and mixed representations are based on the same set
www.eeworm.com/read/308467/13700622
m rsc_encode.m
function y = rsc_encode(g, x, end1)
%x为输入序列,g为卷积码的生成多项式,y为编码后输出
%endl尾比特处理标志,如end1>0,有m个尾比特,编码至x最后一个比特到达最后一个寄存器;如end1
www.eeworm.com/read/308467/13700627
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/307949/13712743
txt encode_result.txt
www.eeworm.com/read/306561/13741887
h des_encode.h
void EncodeMain(); //EncodeMain function
void DecodeMain(); //Sorry ,it has not used
void Decode(int
www.eeworm.com/read/306386/13745545
m rs_encode.m
function t_x = rs_encode(m_x);
%本函数实现编码器过程
%下为生成矩阵的构造过程
g=zeros(1,7);
g(1)=2;
g(2)=1;
temp=zeros(1,7);
for i=2:6
temp = g;
g=zeros(1,7);
g(2:7)=temp(1:6);
for j=1:6
www.eeworm.com/read/306208/13749246
vhd com_encode.vhd
--com_encode.vhd 7 segment com encoder
library ieee ;
use ieee.std_logic_1164.all;
entity com_encode is
port(
com_clk : in std_logic_vector(1 downto 0);--input count
ledcom : out std_log