Skip to content

Commit

Permalink
Merge pull request SciML#259 from sathvikbhagavan/sb/akima_docs
Browse files Browse the repository at this point in the history
docs: add AkimaInterpolation in methods page
  • Loading branch information
ChrisRackauckas authored Jun 6, 2024
2 parents 1384ede + 59d2b35 commit b018810
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions docs/src/methods.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,18 @@ scatter(t, u, label = "input data")
plot!(A)
```

## Akima Interpolation

This function fits piecewise cubic polynomials which forms a continuously differentiable function.
This differs from Cubic Spline as coefficients are computed using only neighbouring points and hence the
fit looks more natural.

```@example tutorial
A = AkimaInterpolation(u, t)
scatter(t, u, label = "input data")
plot!(A)
```

## Constant Interpolation

This function is constant between data points. By default,
Expand Down

0 comments on commit b018810

Please sign in to comment.