代码搜索:Encode
找到约 8,258 项符合「Encode」的源代码
代码结果 8,258
www.eeworm.com/read/408889/11366045
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/408889/11366156
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/408772/11369976
cpp qr_encode.cpp
www.eeworm.com/read/408772/11369979
h qr_encode.h
www.eeworm.com/read/406905/11432867
v mask_encode.v
module mask_encode(false_s1, true_s1, enc_s1);
input [14:0] false_s1;
input [14:0] true_s1;
output [3:0] enc_s1;
reg [14:0] tmp_dec_s1;
reg [3:0] enc_s1;
always @ (false_s1 or true_s1 or tmp_dec_s1
www.eeworm.com/read/405714/11458935
m crc_encode.m
function crc_encode_scr=crc_encode(scr)
poly=[1 1 0 0 1 1]; %crc检验用多项式
[M N]=size(poly);
scrg=[scr zeros(1,N-1)];
[q r]=deconv(scrg,poly);
r=abs(r);
for i=1:length(r)
a=r(i);
if (
www.eeworm.com/read/405087/11471853
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/405087/11471862
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/404674/11480491