代码搜索:Encode
找到约 8,258 项符合「Encode」的源代码
代码结果 8,258
www.eeworm.com/read/156378/11807608
m encode.m
function cC=encode(C)
%初始变量
zeroseq=0;
zerocount=0;
j=1;
compC=[];
for m=1:length(C)
if (C(m)==0)&(zeroseq==0)
compC=[compC C(m)];
j=j+1;
zeroseq=1;
ze
www.eeworm.com/read/256903/11965026
c encode.c
//Head files
//-----------------------------------------------------------------
#include "stdio.h"
#include "math.h"
#include "stdlib.h"
www.eeworm.com/read/256903/11965031
h encode.h
#define DATA_LENGTH 762
#define INFOR_DATA_LENGTH 752
#define CHECK_DATA_LENGTH 10
int Codes[DATA_LENGTH];
int CodesTemp[INFOR_DATA_LENGTH];
www.eeworm.com/read/342343/12027082
c encode.c
/*************************************************************************
函数名:code_conv
功能:实现卷积编码,生成式为:0x79,0x75,Ox5B;
输入:data[length]
输出:encode[size_rcpc]
说明:
RCPC的编码是在卷积码编码的基础上,根据删除
www.eeworm.com/read/342248/12032766
c encode.c
/* ENCODE.C - Encode message blocks. */
/* Copyright (c) 2000, 2001 by Radford M. Neal
*
* Permission is granted for anyone to copy, use, or modify this program
* for purposes of research or edu
www.eeworm.com/read/341568/12077167
c encode.c
/*
* encode.c
*
* CCITT ADPCM encoder
*
* Usage : encode [-3|4|5] [-a|u|l] < infile > outfile
where:
-3 encode to (decode from) G.723 24kbps (3-bit) data
-4 encode to (decode from) G.721 32
www.eeworm.com/read/152786/12083168
c encode.c
/****************************************************************************
* *
* cryptlib Datatgram Encoding Routines *
* Copyright Peter Gutmann 1996-2003 *
www.eeworm.com/read/341225/12098182
~pas encode.~pas
unit Encode;
interface
function Encrypt(const str: string): string;
function Decrypt(const str: string): string;
implementation
{#### 加密解密}
const
fSeedA = 56789;/// 常量 ,
fSe
www.eeworm.com/read/341225/12098184