Skip to content

Commit

Permalink
Merge pull request #2 from rmlopes/patch-1
Browse files Browse the repository at this point in the history
Corrected the dot example
  • Loading branch information
olivierverdier committed Feb 1, 2016
2 parents 152993c + 8e2cef3 commit 9e9c77c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -55,7 +55,7 @@ f.roots() # all the roots of f on [-1, 1]
One can compute the integral of f:
```python
f.sum() # integral of f from -1 to 1
dot(f,g) # integral of f.g from -1 to 1
f.dot(g) # integral of f.g from -1 to 1
```

An arbitrary function can be differentiated and integrated:
Expand Down

0 comments on commit 9e9c77c

Please sign in to comment.