BCH碼
BCH碼(BCH codes、Bose–Chaudhuri–Hocquenghem codes)為取自Bose、Ray-Chaudhuri與Hocquenghem的縮寫,是編碼理論尤其是糾錯碼中研究得比較多的一種編碼方法。用術語來說,BCH碼是用於校正多個隨機錯誤模式的多級、循環、錯誤校正、變長數字編碼。BCH碼也可以用於質數級或者質數的冪級的多級相移鍵控。11級的BCH碼已經用於表示10進制數外加一個符號位。
構建
BCH 碼使用有限域上的域論與多項式。為了檢測錯誤可以構建一個檢測多項式,這樣接收端就可以檢測是否有錯誤發生。
要構建一個能夠檢測、校正兩個錯誤的 BCH 碼,我們要使用有限域 GF(16) 或者 Z2[x]/<x4 + x + 1>。如果 α 是 m1(x) = x4 + x + 1 的一個根,那麼 m1 就是 α 的極小多項式,這是因為
- m1(x) = (x - α)(x - α2)(x - α4)(x - α8)=x4 + x + 1。
如果要構建一個能夠糾正一個錯誤的 BCH 碼,那麼就使用 m1(x),這個代碼就是所有滿足
- C(x) ≡ 0(mod m1(x))且根為 α, α2, α4, α8 的多項式 C(x)。
編碼
構建碼字為
- (c14, c13, ..., c8)
這樣多項式為
- c14+c13+...+c8
我們將它稱為 CI。
然後就要找出 CR 滿足 CR=CI (mod m1,3(x))=c7+c6+...+c0
這樣就得到待發的碼字 C(x) = CI+CR (mod m1,3(x)) = 0
例如,如果我們要對 (1,1,0,0,1,1,0) 進行編碼
- CI=x14+x13+x10+x9
然後用 m1,3(x) 除以(這裡的除法是多項式除法)CI ,得到結果為 CR(x),在Z2域中,我們可以算出 CR為
- x3+1
這樣,待發的碼字為
- (1,1,0,0,1,1,0, 0,0,0,0,1,0,0,1)
解碼
BCH 的解碼過程可以分為以下四步
- 計算接收到的向量 R 的 2t 伴隨矩陣
- 計算錯誤定位多項式
- 解多項式,得到錯誤位置
- 如果不是二進制 BCH 碼,就計算錯誤位置的誤差值
假設我們收到一個碼字向量 r,即多項式 R(x))。
如果沒有錯誤,那麼 R(α)=R(α3)=0
如果有一個錯誤,例如 r=c+ei,其中 ei 表示 R14 的第 i個基向量 於是
- S1=R(α)=C(α)+αi=αi
- S3=R(α3)=C(α3)+(α3)i
- =(αi)3=S13
這樣就可以糾正錯誤。α 的指數顯示的數據位變化可以幫助我們校正錯誤。
如果有兩個錯誤
- r=c+ei+ej
那麼
- S1=R(α)=C(α)+αi+αj
- S3=R(α3)=C(α3)+(α3)i+(α3)j
- = (α3)i+(α3)j
這與 S13 不同,所以我們認為有兩個錯誤。更進一步的代數方法可以幫助校正着兩個錯誤。
開頭兩段內容出自 Federal Standard 1037C
上面的文字摘自:https://web.archive.org/web/20070213013106/http://bch-code.foosquare.com/
BCH 解碼算法
流行的解碼算法有,
- Peterson Gorenstein Zierler算法
- Berlekamp-Massey算法
Peterson Gorenstein Zierler 算法
假設
Peterson 算法是普通 BCH 解碼過程的第二步,在這裡使用 Peterson 算法計算多項式 的錯誤定位多項式係數
這樣給定 BCH 碼 ,可以校正 個錯誤的 Peterson Gorenstein Zierler 算法就是
算法
- 首先生成 伴隨矩陣
- 然後生成元素為
的矩陣
- 生成元素為
的矩陣
- 讓 表示未知的多項式係數,用
表示
- 這樣就得到矩陣方程
- 如果矩陣 存在行列式,那麼我們就可以找到這個矩陣的逆,然後就可以得到 的值
- 如果 ,那麼按照
if then declare an empty error locator polynomial stop Peterson procedure. end set continue from the beginning of Peterson's decoding
- 在 的值確定之後,自然就得到錯誤定位多項式
- 結束 Peterson procedure。
錯誤定位多項式的因式分解
在得到 多項式之後,用 Chiens search 算法就可以得到它的解 。根據素元 的指數冪就能得到接收到的碼字中錯誤的位置,這也就是誤差定位多項式名稱的由來。
錯誤校正
對於二進制的BCH碼,可以直接根據錯誤定位多項式因數素元指數的位置校正接收到的向量。最後,對這些位置接收到的數值取反,就可以得到正確的BCH解碼碼字。
另外也可以使用Berlekamp-Massey 算法確定錯誤定位多項式,從而解決BCH解碼的問題。
參考文獻
主要參考
- Hocquenghem, A., Codes correcteurs d'erreurs, Chiffres (Paris), September 1959, 2: 147–156 (法語)
- Bose, R. C.; Ray-Chaudhuri, D. K., On A Class of Error Correcting Binary Group Codes, Information and Control, March 1960, 3 (1): 68–79, ISSN 0890-5401, doi:10.1016/s0019-9958(60)90287-4
次要參考
- Gill, John, EE387 Notes #7, Handout #28 (PDF), Stanford University: 42–45, n.d. [April 21, 2010], (原始內容 (PDF)存檔於2014年6月30日) Course notes are apparently being redone for 2012: http://www.stanford.edu/class/ee387/(頁面存檔備份,存於網際網路檔案館)
- Gorenstein, Daniel; Peterson, W. Wesley; Zierler, Neal, Two-Error Correcting Bose-Chaudhuri Codes are Quasi-Perfect, Information and Control, 1960, 3 (3): 291–294, doi:10.1016/s0019-9958(60)90877-9
- Lidl, Rudolf; Pilz, Günter, Applied Abstract Algebra 2nd, John Wiley, 1999
- Reed, Irving S.; Chen, Xuemin, Error-Control Coding for Data Networks, Boston, MA: Kluwer Academic Publishers, 1999, ISBN 0-7923-8528-4
延伸閱讀
- Blahut, Richard E., Algebraic Codes for Data Transmission 2nd, Cambridge University Press, 2003, ISBN 0-521-55374-1
- Gilbert, W. J.; Nicholson, W. K., Modern Algebra with Applications 2nd, John Wiley, 2004
- Lin, S.; Costello, D., Error Control Coding: Fundamentals and Applications, Englewood Cliffs, NJ: Prentice-Hall, 2004
- MacWilliams, F. J.; Sloane, N. J. A., The Theory of Error-Correcting Codes, New York, NY: North-Holland Publishing Company, 1977
- Rudra, Atri, CSE 545, Error Correcting Codes: Combinatorics, Algorithms and Applications, University at Buffalo, [April 21, 2010], (原始內容存檔於2010-07-02)
外部連接參考文獻
- S. Lin and D. Costello. Error Control Coding: Fundamentals and Applications. Prentice-Hall, Englewood Cliffs, NJ, 2004.
- Step by step decoding instructions (pdf file).
- Federal Standard 1037c: https://web.archive.org/web/20060820191527/http://federal-standard-1037c.foosquare.com/
- Galois Field Calculator: https://web.archive.org/web/20060212215733/http://www.geocities.com/myopic_stargazer/gf_calc.zip
- Decoding Algorithms for BCH codes: http://students.uta.edu/mx/mxa6471/research/ecc-report.pdf[永久失效連結]
- Source code for BCH channel simulation: http://students.uta.edu/mx/mxa6471/research/ecc-code.tgz[永久失效連結]