搜索资源列表
一个完整身份证效验程序
- 公民身份号码是特征组合码18位:由十七位数字本体码和一位数字校验码组成。排列顺序从左至右依次为:六位数字地址码,八位数字出生日期码,三位数字顺序码和一位数字校验码。 -citizenship number is the combination code 18 : 17 figures Ontology yards and a digital-correcting code components. Sequencing from left to right were : six figures a
ldpcgenerate_ber
- 关于低密度奇偶校验码的生成,采用matlab编写,主要是校验矩阵的产生 -on low-density parity-check code generation, prepared using Matlab, mainly for the selection of calibration matrix
CRC_description.pdf
- CRC的英文全称为Cyclic Redundancy Check(Code),中文名称为循环冗余校验(码)。它是一类重要的线性分组码,编码和解码方法简单,检错和纠错能力强,在通信领域广泛地用于实现差错控制。-CRC called the English Cyclic Redundancy Check (Code), the Chinese name for the Cyclic Redundancy Check (code). It is important for a class of lin
Java3D
- java3d计算CRC校验码,详细说明看源代码中的注释。
code
- 单个的奇偶校验码仅能检出奇数个码元的错误,奇偶校验可以用在数字系统的主要接口设备中-Single parity code can only be detected in a symbol odd errors, parity can be used in digital systems in the main interface
200991323298249
- VB开发的串口通信源码。对端口速度、奇偶校验、停止位等都可以设置。用于串口通信的开发-VB source code developed by serial communication. On the port speed, parity, stop bits and so can be set. Serial Communication for Development
UartAssist
- 本工具支持各种串口设置,如波特率,校验位、数据位和停止位等等。支持ASCII/Hex发送,发送和接收的数据可以在16进制和ASCII码之间任意转换。可以自动在发送的数据尾部增加校验位,支持多种校验格式。支持间隔发送,循环发送,批处理发送,输入数据可以从外部文件导入-The tool supports a variety of serial port settings, such as baud rate, parity bit, data bits and stop bits and so on
identity-card-number-
- c++实现身份证号码的白盒黑盒测试 系统校验身份证号码的正确性。含源码和报告-correctness of c++ identity card number, check the identity card number of the white box black box testing system. Containing the source code and report
crczxygj
- 【基本介绍】 这是一款在Windows下用来计算和校验字符串CRC值或者文件CRC值的工具,支持CRC16、CRC32校验,支持文件拖放功能。主要用途:验证下载后的文件是否与服务器上的文件一致。 【软件特点】 CRC的全称是循环冗余校验,其特点是:检错能力极强,开销小。CRC的实际应用是对一段信息(字节串)产生fingerprint(指纹码),可以防止程序被他人“篡改”。其广泛用于在数据存储和数据通讯领域...另外也可用作杀毒校验技术的一部分,使得重复扫描速度加快了N倍
punctured-convolutional-codes
- 本文是一篇优秀硕士毕业论文提出一种基于校验矩阵的删除卷积码的识别方法。 - In this paper, a code rate recognition method for punctured convolutional code has been proposed based on parity check matrix.
ldpc
- 低密度校验码 ,很好用的代码,功能已经实现编码和译码-fpga ldpc
8jinzhiCRC
- 简单的八进制校验码生成器,也是在网上借鉴别人的 以此分享-Simple octal check code generator, and draw lessons others on the Internet To share
LDPC
- LDPC码既低密度奇偶校验码(Low Density Parity Check Code,LDPC)-(Low Density Parity Check Code,LDPC)
effcient-encoding-of-QC_LDPC
- 有效的编码Quasi-CyclicLow-Density奇偶校验码-Efficent Encoding of Quasi-CyclicLow-Density Parity-Check Codesi
LDPC
- 实现LDPC编码仿真和译码仿真,参数有接收码字,解调器输出,信道噪声标准差,校验矩阵,迭代次数-realise the encoder and decoder of LDPC,ceremeters include receiveword,sigma,check parity,IterNum
BP1
- LDPC码的is仿真:对短环进行偏置,然后进行译码,统计错误的变量节点数目和位置以及校验节点的错误个数。-LDPC codes is simulation: short ring bias, then the number of coding errors, statistical errors of variable nodes and check the number and location of nodes.
162365
- 本软件是CRC校验软件,在开发通讯程序时可以参考校验码的对错,-This software is the CRC software, in the development of communications programs can reference wrong checksum,
CRC
- 数据通信领域中最常用的一种查错校验码,其特征是信息字段和校验字段的长度可以任意选定。循环冗余检查(CRC)是一种数据传输检错功能,对数据进行多项式计算,并将得到的结果附在帧的后面,接收设备也执行类似的算法,以保证数据传输的正确性和完整性。-Cyclic Redundancy Check[
16-CRC
- 16位CRC校验码的计算方式和方法,两种方法可选。-CRC calculation
8位奇偶校验器
- 奇偶校验器是通过信息位和1位校验位中的二进制中的“1”的个数来判断是偶还是奇数校验,如果是奇数,那么就是奇数校验码,反之则反,波形信息位为奇数为1,校验位为0时,输出的奇校验位为0,偶校验位为1,奇校验错误为0,偶校验错误为1(即有错)。同理其他测试分别测试了信息位为奇数个1,校验位为1、信息位为偶数个1,校验位为1、信息位为偶数个1,校验位为0的情况,图中波形的测试完全符合预期要求。