Skip to content

fix typesetting #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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