Navigation

  • index
  • next |
  • previous |
  • SpKit »
  • Link to pylfsr documentation

Link to pylfsr documentation¶

Example: 5 bit LFSR with x^5 + x^2 + 1¶

import numpy as np
from spkit.pylfsr import LFSR

L = LFSR()
L.info()
L.next()
L.runKCycle(10)
L.runFullCycle()
L.info()
tempseq = L.runKCycle(10000)    # generate 10000 bits from current state

Check out full documentation of LFSR**¶

https://lfsr.readthedocs.io/

Table of Contents

  • Link to pylfsr documentation
    • Example: 5 bit LFSR with x^5 + x^2 + 1
    • Check out full documentation of LFSR**

Previous topic

Periodogram

Next topic

API docs

Quick links

  • Homepage
  • Fork me on Github
  • Discussion Group
  • Examples Gellary

Quick search

Navigation

  • index
  • next |
  • previous |
  • SpKit »
  • Link to pylfsr documentation
© Copyright 2019-2023, Nikesh Bajaj. Last updated on Apr 10, 2023. Created using Sphinx 5.3.0.