Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
maroba committed Aug 10, 2022
1 parent 9fc7de8 commit 4f566bd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,12 @@ d2f_dx2 = d2_dx2(f)

Similary, you can define partial derivative operators along different axes or of higher degree, for example:

| Math | *findiff* | |
|-------------------------------------------------------|---------------------------------------|-----------------------------------------|
| <img src="docs/frontpage/d_dy.png" height="50px"> | ```FinDiff(1, dy, 1)``` | same as ``` FinDiff(1, dy, 1)``` |
| <img src="docs/frontpage/d4_dy4.png" height="50px"> | ```FinDiff(1, dy, 4)``` | any degree is possible |
| Math | *findiff* | |
|-------------------------------------------------------|---------------------------------------|----------------------------------------|
| <img src="docs/frontpage/d_dy.png" height="50px"> | ```FinDiff(1, dy, 1)``` | same as ``` FinDiff(1, dy)``` |
| <img src="docs/frontpage/d4_dy4.png" height="50px"> | ```FinDiff(1, dy, 4)``` | any degree is possible |
| <img src="docs/frontpage/d3_dx2dz.png" height="50px"> | ```FinDiff((0, dx, 2), (2, dz, 1))``` | mixed also possible, one tuple per axis |
| <img src="docs/frontpage/d_dx_10.png" height="50px"> | ```FinDiff(10, dx10, 1)``` | number of axes not limited |
| <img src="docs/frontpage/d_dx_10.png" height="50px"> | ```FinDiff(10, dx10, 1)``` | number of axes not limited |

We can also take linear combinations of derivative operators, for example:

Expand Down

0 comments on commit 4f566bd

Please sign in to comment.