Skip to content

Commit

Permalink
Update README.
Browse files Browse the repository at this point in the history
  • Loading branch information
markrogoyski committed Sep 6, 2016
1 parent 0fffe71 commit 0ceb941
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Features
- [Vector](#linear-algebra---vector)
* Numerical Analysis
- [Interpolation](#numerical-analysis---interpolation)
- [Numerical Integratio](#numerical-analysis---numerical-integration)
- [Numerical Integration](#numerical-analysis---numerical-integration)
- [Root Finding](#numerical-analysis---root-finding)
* Probability
- [Combinatorics](#probability---combinatorics)
Expand Down Expand Up @@ -340,7 +340,7 @@ use Math\NumericalAnalysis\Interpolation;
// Lagrange Polynomial
// Returns a function p(x) of x
$points = [[0, 1], [1, 4], [2, 9], [3, 16]];
$p = LagrangePolynomial::interpolate($points); // input as a set of points
$p = LagrangePolynomial::interpolate($points); // input as a set of points

$p(0) // 1
$p(3) // 16
Expand All @@ -353,7 +353,6 @@ $p = LagrangePolynomial::interpolate($f⟮x⟯, $start, $end, $n); // input as a

$p(0) // 1
$p(3) // 16

```

### Numerical Analysis - Numerical Integration
Expand Down

0 comments on commit 0ceb941

Please sign in to comment.