代码搜索:Encode
找到约 8,258 项符合「Encode」的源代码
代码结果 8,258
www.eeworm.com/read/443158/7636771
m gen_encode.m
function P=gen_encode(X,Nb,l,u)
%%将群体X的状态编码为 二进制数组P
Np=size(X,1);%%群体大小
N=length(Nb); %%变量(状态)维数
for n=1:Np
b2=0;
for m=1:N
b1=b2+1;
b2=b2+Nb(m);
Xnm=(2^Nb(m
www.eeworm.com/read/443158/7636772
asv gen_encode.asv
% function P=gen_encode(X,Nb,l,u)
%%将群体X的状态编码为 二进制数组P
Np=size(X,1);%%群体大小
N=length(Nb); %%变量(状态)维数
for n=1:Np
b2=0;
for m=1:N
b1=b2+1;
b2=b2+Nb(m);
Xnm=(2^Nb(m
www.eeworm.com/read/441747/7666064
m im_encode.m
function [code,cols] = im_encode(data)
s = size(data);
rows = s(1);
cols = s(2);
y = zeros(1,rows * cols);
index = 1;
for k = 1:rows
y(index:(index + cols) - 1) = data(k,:);
in
www.eeworm.com/read/441747/7666082
sdr pcm_encode.sdr
www.eeworm.com/read/441747/7666087
m text_encode.m
function [code] = text_encode(data)
len = length(data);
code = zeros(1,len * 8);
index = 1;
for k = 1:len
c = de2bi(data(k),8);
code(index:index + 7) = c;
index = index + 8;
www.eeworm.com/read/441747/7666097
m pcm_encode.m
function [code,num_array] = pcm_encode(data)
global H
% get BITS
s = get(H.edit20,'String');
BITS = st2de(s);
BITS = round(BITS);
% find max and min of data
max_data = 1;
min_data = -1;
www.eeworm.com/read/439716/7702539
h des_encode.h
void EncodeMain(); //EncodeMain function
void DecodeMain(); //Sorry ,it has not used
void Decode(int
www.eeworm.com/read/438335/7732696
m rsc_encode.m
function y = rsc_encode(g, x, end1)
%x为输入序列,g为卷积码的生成多项式,y为编码后输出
%endl尾比特处理标志,如end1>0,有m个尾比特,编码至x最后一个比特到达最后一个寄存器;如end1
www.eeworm.com/read/438335/7732701
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/437728/7741824
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