代码搜索:Encode
找到约 8,258 项符合「Encode」的源代码
代码结果 8,258
www.eeworm.com/read/158454/11614294
m encode.m
function [x]=encode(H,s)
% H为校验矩阵,s为信息序列
[m,n]=size(H);
g=3;
A=H(1:(m-g),1:(n-m));
B=H(1:(m-g),(n-m+1):(n-m+g));
C=H((m-g+1):m,1:(n-m));
D=H((m-g+1):m,(n-m+1):(n-m+g));
E=H((m-g+1):m,(n-m+g+1)
www.eeworm.com/read/158454/11614334
asv encode.asv
function [x]=encode(H,s)
% H为校验矩阵,s为信息序列
[m,n]=size(H);
g=3;
A=H(1:(m-g),1:(n-m));
B=H(1:(m-g),(n-m+1):(n-m+g));
C=H((m-g+1):m,1:(n-m));
D=H((m-g+1):m,(n-m+1):(n-m+g));
E=H((m-g+1):m,(n-m+g+1)
www.eeworm.com/read/260910/11687335
m encode.m
function paratope=encode(pop)
[px,py]=size(pop);
for i=1:1:py
pop1(:,i)=2.^(py-1).*pop(:,i);
py=py-1;
end
paratope=sum(pop1,2);
www.eeworm.com/read/156908/11752882
cpp encode.cpp
/*
* Program to encode text using RSA public key.
*
* Note that an exponent of 3 must be used with extreme care!
*
* For example:-
* If the same message m is encrypted under 3 or m
www.eeworm.com/read/156908/11753768
c encode.c
/*
* Program to encode text using RSA public key.
*
* *** For Demonstration use only *****
*
* Copyright (c) 1988-1997 Shamus Software Ltd.
*/
#include
#include "miracl
www.eeworm.com/read/156854/11760507
_h encode._h
unsigned char const Shifted[59][2] = {
0x1C, 'A',
0x32, 'B',
0x21, 'C',
0x23, 'D',
0x24, 'E',
0x2B, 'F',
0x34, 'G',
0x33, 'H',
0x43, 'I',
0x3B, 'J',
0x42, 'K',
0x4B, 'L',
0x3A, 'M',
0x31
www.eeworm.com/read/156854/11760510
h encode.h
unsigned char const Shifted[59][2] = {
0x1C, 'A',
0x32, 'B',
0x21, 'C',
0x23, 'D',
0x24, 'E',
0x2B, 'F',
0x34, 'G',
0x33, 'H',
0x43, 'I',
0x3B, 'J',
0x42, 'K',
0x4B, 'L',
0x3A, 'M',
0x31
www.eeworm.com/read/346200/11761761