Location:
Search - REM
Search list
Description: RLE的基本思路是,把数据分两种情况对待:
A1.一些连续的重复字节
A2.一些连续的,不相重复的字节
RLE压缩最常见的一种算法思路:
将全部的数据分成很多块,这些块的长度各不一样:
all data = [block] + [block] + ... + [block]
每一块由两部分顺序组成:
a block = [header] + [data]
其中header部分占2字节16位,这16位中的最高位,标志了这个block的属性,是属于上面的A1还是A2。对应于A1和A2,剩下的15位以及后面的Data部分的意义又分为两种:
A1: block的剩下15位记录重复的次数,取值范围[0,32767];data段仅含一个字节,即重复的那个字节
A2: block的剩下15位记录data段有多少个字节;data段则是一系列不相重复的字节。
-RLE the basic idea is that the two data points of the deal : A1. number of consecutive repeat byte A2. some continuous, do not duplicate byte RLE compression one of the most common algorithm : all of the data into many pieces, the length of these pieces not the same : all data = [block] [block] ... [block] for every part of a two-shun sequence components : a block = [header] [data] header which accounted for some two-byte 16, This 16-the highest mark of the attributes of the block, is above the A1 or A2. Corresponding to the A1 and A2, and the remaining 15 and the back part of the Data significance will be divided into two : A1 : block the remaining 15 the number of duplicate records, the value in the range [0,32767]; with only one of the data byte, which repeat the byte A2 : block the rem
Platform: |
Size: 14893 |
Author: tangxin |
Hits:
Description: 本程序通过现场实验应用在TI的DSP2407通讯
没有问题可以适宜市-the scene through experimental procedures used in TI's communication wheels can not fit City
Platform: |
Size: 1997 |
Author: huangchaofeng |
Hits:
Description: dele-rem:《编译原理》词法分析器中一个很精典的错误处理子程序-dele - poise : "Compiling Principle" lexical analyzer is a classical error handling routines
Platform: |
Size: 9538 |
Author: 黄启龙 |
Hits:
Description: DOS改IP计算机名
@echo off
color 1A
del /A /Q /F *.reg
cls
REM 设置部分
::网段设置
set IPDATA1=10.128.19.
set IPDATA2=10.128.18.
::计算机名前面部分
set NAMEDATA=DY
::下面不需要设置
set X=240
set a=0
set aa=00
::网关
set gateway=10.128.19.254
::子网掩码
set masks=255.255.255.0
::自动登陆
set user=Admin
set password=7895123
::同步时间服务器IP地址
set Server=10.128.19.247
Platform: |
Size: 4545 |
Author: 改IP.bat |
Hits:
Description: REM 管理栏目设置
dim menu(4,10)
menu(0,0)=\"信息及常规管理\"
menu(0,1)=\"<a target=main href=admin_config.asp>网站参数设置</a>\"
menu(0,2)=\"<a target=main href=admin_link.asp>友情链接管理</a>\"
menu(0,3)=\"<a target=main href=admin_mb.asp>网站模板管理</a>\"
menu(0,4)=\"<a target=main href=admin_ads.asp>网站广告管理</a>\"
menu(0,5)=\"<a target=main href=serverinfo.asp>服务器信息探测</a>\"
menu(0,6)=\"<a target=main href=mysql.asp>SQL高级管理</a>\"
menu(0,7)=\"<a target=main href=admin_config1.asp>恢复初始设置</a>\"
Platform: |
Size: 7511 |
Author: zhutao |
Hits:
Description: 这个是一个可以实现3~6KM距离通讯的程序,实现过程都已经详细注释 硬件采用ADC得到原始数据 然后根据线路得编码情况得到数据
而且针对多节点 带了一个自适应的算法 这样就可以在总线上任意两个终端通讯
Platform: |
Size: 8641 |
Author: hncscj |
Hits:
Description: Microsoft MS-DOS6.0 完整源代码,包括所有外部命令,安装程序,DOSSHELL等。每个源文件均包括开发历史、更新说明、注释。这样一套源码对你的意义,实在无法以笔墨形容-Microsoft the MS-DOS6.0 complete source code, including all
external commands, the installation procedure, DOSSHELL and so on.
Each source document includes the development history, the renewal
explanation, the annotation. This kind of set of sources code to your
significance, really is unable to the words to describe
Platform: |
Size: 19890176 |
Author: 李寻欢 |
Hits:
Description: RLE的基本思路是,把数据分两种情况对待:
A1.一些连续的重复字节
A2.一些连续的,不相重复的字节
RLE压缩最常见的一种算法思路:
将全部的数据分成很多块,这些块的长度各不一样:
all data = [block] + [block] + ... + [block]
每一块由两部分顺序组成:
a block = [header] + [data]
其中header部分占2字节16位,这16位中的最高位,标志了这个block的属性,是属于上面的A1还是A2。对应于A1和A2,剩下的15位以及后面的Data部分的意义又分为两种:
A1: block的剩下15位记录重复的次数,取值范围[0,32767];data段仅含一个字节,即重复的那个字节
A2: block的剩下15位记录data段有多少个字节;data段则是一系列不相重复的字节。
-RLE the basic idea is that the two data points of the deal : A1. number of consecutive repeat byte A2. some continuous, do not duplicate byte RLE compression one of the most common algorithm : all of the data into many pieces, the length of these pieces not the same : all data = [block] [block] ... [block] for every part of a two-shun sequence components : a block = [header] [data] header which accounted for some two-byte 16, This 16-the highest mark of the attributes of the block, is above the A1 or A2. Corresponding to the A1 and A2, and the remaining 15 and the back part of the Data significance will be divided into two : A1 : block the remaining 15 the number of duplicate records, the value in the range [0,32767]; with only one of the data byte, which repeat the byte A2 : block the rem
Platform: |
Size: 206848 |
Author: tangxin |
Hits:
Description: 一个VB的記事系統````
有很多不错的功能`-a VB notebook system `` `` there are many good features `
Platform: |
Size: 117760 |
Author: 占武 |
Hits:
Description: 单片机AT89S52与计算机进行串行通讯,通过232进行,可以不停向PC发送-SCM At89s52 and computer serial communication, and by 232, could go to the PC Send
Platform: |
Size: 1024 |
Author: 李波 |
Hits:
Description: 本程序通过现场实验应用在TI的DSP2407通讯
没有问题可以适宜市-the scene through experimental procedures used in TI's communication wheels can not fit City
Platform: |
Size: 2048 |
Author: huangchaofeng |
Hits:
Description: dele-rem:《编译原理》词法分析器中一个很精典的错误处理子程序-dele- poise : "Compiling Principle" lexical analyzer is a classical error handling routines
Platform: |
Size: 114688 |
Author: 黄启龙 |
Hits:
Description: 运用firls设计的滤波器进行滤波 运用remez设计的滤波器进行滤波-The use of the filter design firls filter designed to filter the use of Remez filter
Platform: |
Size: 1024 |
Author: xuyan |
Hits:
Description: REM 管理栏目设置
dim menu(4,10)
menu(0,0)="信息及常规管理"
menu(0,1)="<a target=main href=admin_config.asp>网站参数设置</a>"
menu(0,2)="<a target=main href=admin_link.asp>友情链接管理</a>"
menu(0,3)="<a target=main href=admin_mb.asp>网站模板管理</a>"
menu(0,4)="<a target=main href=admin_ads.asp>网站广告管理</a>"
menu(0,5)="<a target=main href=serverinfo.asp>服务器信息探测</a>"
menu(0,6)="<a target=main href=mysql.asp>SQL高级管理</a>"
menu(0,7)="<a target=main href=admin_config1.asp>恢复初始设置</a>"-REM Management columns dim menu (4,10) menu (0,0) = Information and conventional management menu (0,1) =
Platform: |
Size: 7168 |
Author: zhutao |
Hits:
Description: Ms-Rem 写的进程保护例子
驱动是VC版
例子调用是DELPHI,
先用驱动加载工具加载驱动 Protector.sys
然后在启动例子,例子程序即被保护。
-Written by Ms-Rem-driven process is the protection of examples of examples of VC version is called DELPHI, first drive to load drivers loading tool and then start the example Protector.sys, for example, was the protection of the procedure.
Platform: |
Size: 9216 |
Author: r00tsh3ll |
Hits:
Description: decoder of Hamming
Use a [7,4] Hamming code.
m = 3 n = 2^m-1 k = n-m
parmat = hammgen(m) Produce parity-check matrix.
trt = syndtable(parmat) Produce decoding table.
recd = [1 0 0 1 1 1 1] Suppose this is the received vector.
syndrome = rem(recd * parmat ,2)
syndrome_de = bi2de(syndrome, left-msb ) Convert to decimal.-decoder of Hamming
Use a [7,4] Hamming code.
m = 3 n = 2^m-1 k = n-m
parmat = hammgen(m) Produce parity-check matrix.
trt = syndtable(parmat) Produce decoding table.
recd = [1 0 0 1 1 1 1] Suppose this is the received vector.
syndrome = rem(recd* parmat ,2)
syndrome_de = bi2de(syndrome, left-msb ) Convert to decimal.
Platform: |
Size: 69632 |
Author: le thanh tan |
Hits:
Description: NS-2 随机指数标记算法(REM)是一种有效的主动队列管理算法 这事REM算法源码-NS-2 Random Early Marking Algorithm (REM) is an effective algorithm for active queue management algorithm for this matter REM Source
Platform: |
Size: 13312 |
Author: yjq |
Hits:
Description: 这是ns-2下面的rem算法的源码,包含有rem.h和rem.cc,This is NS-2 source ,Hope to help you-This is NS-2 source ,Hope to help you
Platform: |
Size: 6144 |
Author: 季浩泽 |
Hits:
Description: 2010年09月 软件工程设计 日历记事本【rem】-September 2010 Calendar Notepad software engineering [rem]
Platform: |
Size: 17408 |
Author: 李刚 |
Hits:
Description: 利用rem布局修改后的自适应版JQ事件日历插件(Using the REM layout to modify the adaptive JQ event calendar plug-in)
Platform: |
Size: 47104 |
Author: 稻草人2008
|
Hits: