代码搜索:Encode
找到约 8,258 项符合「Encode」的源代码
代码结果 8,258
www.eeworm.com/read/283136/9040619
mdl encode_de.mdl
Model {
Name "encode_de"
Version 6.5
MdlSubVersion 0
GraphicalInterface {
NumRootInports 0
NumRootOutports 0
ParameterArgumentNames ""
ComputedModelV
www.eeworm.com/read/381211/9104350
m h_encode.m
function [y,Nbits]=h_encode(x)
% [y,Nbits]=h_encode(x)
% Huffman encoding using a fixed frequency table computed
% by freq(x).
%
% x =input vector or array. The elements in x are assumed
%
www.eeworm.com/read/380755/9129706
m crc encode.m
function [B]=CRCen(X)
G=[1 0 0 0 0 0 1 0 0 0 1 1 1 0 1 1 1 0 1 0 1 0 0 1];;
LG=length(G);
Z=zeros(1,LG-1);
B=[X,Z];
LB=length(B);
P=B(1:LG);
pointer=LG;
while pointer
www.eeworm.com/read/183356/9167191
m ldpc_encode.m
function [u,P,rearranged_cols]=ldpc_encode(s,H)
% 高斯消元
%设H=[A | B] ==========> [I | P]
% u=[c | s]
%∵ H*u' = u*H' = 0
%代入得:
% _ _
% | c' |
% [I | P]| | = 0
www.eeworm.com/read/377553/9271617
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
www.eeworm.com/read/179520/9353256