Interpolation functions
- Java 99.6%
- CSS 0.4%
| Filename | Latest commit message | Latest commit date |
|---|---|---|
| .forgejo | ||
| com.io7m.jinterp.core | ||
| com.io7m.jinterp.tests | ||
| src/site/resources | ||
| .gitignore | ||
| .gitmodules | ||
| doc7m-books.json | ||
| pom.xml | ||
| README-CHANGES.xml | ||
| README-LICENSE.txt | ||
| README.in | ||
| README.md | ||
jinterp
jinterp
Trivial Java functions to interpolate values.
Features
- Linear interpolation.
- Cosine interpolation.
- Exponential interpolation.
- Log interpolation.
- High coverage test suite.
- OSGi-ready
- JPMS-ready
- ISC license.
Usage
final double r = InterpolationD.interpolateLinear(0.0, 10.0, 0.5)
assert r == 5.0
