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

📄 binlfsr.cc.txt

📁 压缩文件中是Error Correction Coding - Mathematical Methods and Algorithms(Wiley 2005)作者:(Todd K. Moon )的配
💻 TXT
字号:
//  Program: BinLFSR.cc////  Todd K. Moon//// Copyright 2004 by Todd K. Moon// Permission is granted to use this program/data// for educational/research only#include "BinLFSR.h"BinLFSR::BinLFSR(int in_g, int in_n, int initstate){   int i;   n = in_n;   mask = (1<<n)-1;  // a mask of n ones   mask1 = (1<<(n-1));  // select the highest bit in shift register   g = in_g & mask;   state = initstate;}   char BinLFSR::step(void){   char out = (state&mask) >> (n-1);   state = ((state<<1)^(g*out))&mask;   return out;}char BinLFSR::step(int &stateout){   char out = (state&mask) >> (n-1);   stateout = state;   state = ((state<<1)^(g*out))&mask;   return out;}/*Local Variables:compile-command: "gcc -c -g BinLFSR.cc"End:*/

⌨️ 快捷键说明

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