Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ L.runFullCycle()
L.info()
```

### Example 2**: 5-bit LFSR with custom state and feedback polynomial
### **Example 2**: 5-bit LFSR with custom state and feedback polynomial

```
state = [0,0,0,1,0]
Expand All @@ -93,7 +93,7 @@ tempseq = L.runKCycle(10)
L.set(fpoly=[5,3])
```

### Example 3**: 23-bit LFSR with custom state and feedback polynomial
### **Example 3**: 23-bit LFSR with custom state and feedback polynomial

```
L = LFSR(fpoly=[23,18],initstate ='random',verbose=True)
Expand All @@ -103,7 +103,7 @@ L.info()
seq = L.seq
```

### Example 4**: Get the feedback polynomial or list
### **Example 4**: Get the feedback polynomial or list
Reference : http://www.partow.net/programming/polynomials/index.html

```
Expand Down