Linear_Feedback_Shift_Register
Linear_Feedback_Shift_Register copied to clipboard
[Feature request] Any plan of Galois LFSR implement ?
It's more common in computer scene compare with Fibonacci.
Good idea! @tooyangtoonaive , shouldn't be difficult to do that. I will keep that in mind for next release.
Thanks
Hi @tooyangtoonaive , I just updated new version 1.0.7 with Implementation of Galois LFSR
Here is an example
For 5-bit Fibonacci LFSR
from pylfsr import LFSR
L = LFSR(fpoly = [5,4,3,2], conf='fibonacci')
L.Viz()
Equivalent Galois LFSR is
L = LFSR(fpoly = [5,4,3,2], conf='galois')
L.Viz()


Thanks for suggestion! It was fun to implement it :)