⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ex-ham7b

📁 用C语言编写的LDPC译码程序
💻
字号:
#!/bin/sh# Example of coding using a (7,4) Hamming code, with transmission through# a Binary Symmetric Channel with error probability of 0.05.## This example shows how random source messages can be encoded as codewords, # transmitted through the simulated channel, decoded, and the message bits# extracted from the codewords.  The final result is in ham7b.ext, which can# be compared to ham7b.src.set -x -e # Echo commands as they are executed; stop if an error occurs  make-pchk ham7b.pchk 3 7 0:0 0:3 0:4 0:5 1:1 1:3 1:4 1:6 2:2 2:4 2:5 2:6make-gen  ham7b.pchk ham7b.gen denserand-src  ham7b.src 1 4x1000encode    ham7b.pchk ham7b.gen ham7b.src ham7b.enctransmit  ham7b.enc ham7b.rec 1 bsc 0.05decode    ham7b.pchk ham7b.rec ham7b.dec bsc 0.05 enum-bit ham7b.genverify    ham7b.pchk ham7b.dec ham7b.gen ham7b.srcextract   ham7b.gen ham7b.dec ham7b.ext

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -