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

📄 golaysimp.m

📁 压缩文件中是Error Correction Coding - Mathematical Methods and Algorithms(Wiley 2005)作者:(Todd K. Moon )的配
💻 M
字号:
% Algebraic manipulations to derive the equations used in the% Algebraic Golay decoder% Copyright 2004 by Todd K. Moon% Permission is granted to use this program/data% for educational/research only% Uses the Matlab symbolic toolboxsyms s1 s2 s3 s4 s5 s6 s7 s8 s9 sigma1 sigma2 sigma3 syms t1 t2 t3;syms s32s3 = sigma3 + sigma2*s1 + s1^3;s32 = sigma3^2 + sigma2^2*s1^2 + s1^6;s5 = s1^5 + sigma2*s3 + sigma3*s1^2;s7 = s1*s32 + sigma2*s5 + sigma3*s1^4;% Compute the numerator of D:% use the fact that s1^3 + s3 = sigma3 + sigma2*s1t1 =(sigma3+sigma2*s1)*(sigma3^2 + sigma2^2*s1^2) +(sigma2*s7+sigma3*s32);   t1 = expand(t1);t1 = collect(t1,sigma3);t2 = simplify(t1/(sigma3 + sigma2*s1));% Throw away the terms with even coefficients.t3 = expand((sigma2 + s1^2)*(sigma2^2 + s1^4));%Then t2 == t3.

⌨️ 快捷键说明

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