Skip to content

Commit 4ef0306

Browse files
committedOct 8, 2017
Adding a TODO list for numerical algorithms
1 parent b77abb0 commit 4ef0306

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed
 

‎ands/algorithms/README.md

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
Algorithms I am particularly interested in are:
44

55

6-
- Neville's algorithm (for polynomial interpolation)
76
- [All nearest smaller values](https://en.wikipedia.org/wiki/All_nearest_smaller_values#CITEREFBerkmanSchieberVishkin1993)
87
- Jacobi
98
- PageRank

‎ands/algorithms/numerical/README.md

+11-5
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,20 @@
22

33
## [Interpolation](https://en.wikipedia.org/wiki/Interpolation#Example)
44

5-
### [Linear interpolation](https://en.wikipedia.org/wiki/Linear_interpolation)
5+
- [Linear interpolation](https://en.wikipedia.org/wiki/Linear_interpolation)
66

7-
### [Polynomial interpolation](https://en.wikipedia.org/wiki/Polynomial_interpolation)
7+
- [Polynomial interpolation](https://en.wikipedia.org/wiki/Polynomial_interpolation)
88

9-
Polynomial interpolation is the interpolation of a given data set by a
9+
Polynomial interpolation is the interpolation of a given data set by a
1010
[polynomial](https://en.wikipedia.org/wiki/Polynomial): given some points, find
1111
a polynomial which goes exactly through these points.
1212

13-
#### [Lagrange form](https://en.wikipedia.org/wiki/Lagrange_polynomial)
13+
- [Lagrange form](https://en.wikipedia.org/wiki/Lagrange_polynomial)
1414

15-
#### [Newton polynomial](https://en.wikipedia.org/wiki/Newton_polynomial)
15+
- [Newton polynomial](https://en.wikipedia.org/wiki/Newton_polynomial)
16+
17+
18+
## TODO
19+
20+
- Lagrange interpolation using barycentric form
21+
- Newton's form (using divided differences)

0 commit comments

Comments
 (0)
Please sign in to comment.