代码搜索:Encoder
找到约 10,000 项符合「Encoder」的源代码
代码结果 10,000
www.eeworm.com/read/281861/9128675
vhd encoder8_3.vhd
LIBRARY IEEE;
USE IEEE.STD_LOGIC_1164.ALL;
ENTITY encoder8_3 IS
PORT(
D : IN STD_LOGIC_VECTOR(7 DOWNTO 0); --输入待编码信号
A : OUT STD_LOGIC_VECTOR(2 DOWNTO 0)); --编码输出
END encoder8_3;
ARCH
www.eeworm.com/read/380713/9134207
m viterbi_encoder1.m
function [y]=viterbi_encoder1(G,u)
G=[1 1 1 1 0 0 1;1 0 1 1 0 1 1];
c(1,:)=mod(conv(u,G(1,:)),2);
c(2,:)=mod(conv(u,G(2,:)),2);
K = size(G, 1);
L=length(u)+size(G,2)-1;
y = reshape(c,K*L,1);
www.eeworm.com/read/380707/9134428
m viterbi_encoder1.m
function [y]=viterbi_encoder1(G,u)
G=[1 1 1 1 0 0 1;1 0 1 1 0 1 1];
c(1,:)=mod(conv(u,G(1,:)),2);
c(2,:)=mod(conv(u,G(2,:)),2);
K = size(G, 1);
L=length(u)+size(G,2)-1;
y = reshape(c,K*L,1);
www.eeworm.com/read/380707/9134440
asv viterbi_encoder1.asv
function [y]=viterbi_encoder1(G,u)
G=[1 1 1 1 0 0 1;1 0 1 1 0 1 1];
c(1,:)=mod(conv(u,G(1,:)),2);
c(2,:)=mod(conv(u,G(2,:)),2);
K = size(G, 1);
L=length(u)+size(G,2)-1;
y = reshape(c,K*L,1);
www.eeworm.com/read/380707/9134465
m viterbi_encoder1.m
function [y]=viterbi_encoder1(G,u)
G=[1 1 1 1 0 0 1;1 0 1 1 0 1 1];
c(1,:)=mod(conv(u,G(1,:)),2);
c(2,:)=mod(conv(u,G(2,:)),2);
K = size(G, 1);
L=length(u)+size(G,2)-1;
y = reshape(c,K*L,1);
www.eeworm.com/read/379331/9200455
m tx_conv_encoder.m
%
% Convolutional encoding with unipolar data
function coded_bits = tx_conv_encoder(in_bits)
global sim_consts;
number_rows = size(sim_consts.ConvCodeGenPoly, 1);
number_bits = size(sim_co
www.eeworm.com/read/378479/9229710
v encoder8_3.v
module encoder8_3(none_on,outcode,a,b,c,d,e,f,g,h);
output none_on;
output[2:0] outcode;
input a,b,c,d,e,f,g,h;
reg[3:0] outtemp;
assign {none_on,outcode}=outtemp;
always @(a or b or c or d or
www.eeworm.com/read/378243/9239660
c g711_encoder.c
/*
=============================================================================
U U GGG SSS TTTTT
U U G S T
www.eeworm.com/read/378243/9239711
c g711_encoder.c
/*
=============================================================================
U U GGG SSS TTTTT
U U G S T
www.eeworm.com/read/378243/9239744
c g711_encoder.c
/*
=============================================================================
U U GGG SSS TTTTT
U U G S T