Watch
2
0
Fork
You've already forked jinterp
0
Interpolation functions
  • Java 99.6%
  • CSS 0.4%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
Mark Raynsford 9b7d0c059c
Some checks are pending
main-RHEL10-x86_64-jdk25 / Build (push) Waiting to run
main-RHEL10-x86_64-jdk26 / Build (push) Waiting to run
main-RHEL9-x86_64-jdk25 / Build (push) Waiting to run
main-RHEL9-x86_64-jdk26 / Build (push) Waiting to run
Update workflows.
2026-07-31 18:42:54 +01:00
.forgejo Update workflows. 2026-07-31 18:42:54 +01:00
com.io7m.jinterp.core Begin next development iteration. 2024-05-12 11:35:07 +00:00
com.io7m.jinterp.tests Begin next development iteration. 2024-05-12 11:35:07 +00:00
src/site/resources Update site metadata. 2025-08-09 15:06:03 +00:00
.gitignore Update .gitignore. 2024-05-07 16:01:43 +00:00
.gitmodules Move to new organization. 2024-04-29 22:17:14 +00:00
doc7m-books.json Add doc7m-books.json 2026-07-31 18:36:46 +01:00
pom.xml Migrate project. 2026-06-27 10:09:50 +01:00
README-CHANGES.xml Mark release 2.0.1 2024-05-12 11:35:00 +00:00
README-LICENSE.txt Update LICENSE 2023-08-13 21:07:24 +00:00
README.in Migrate project. 2026-06-27 10:09:50 +01:00
README.md Migrate project. 2026-06-27 10:09:50 +01:00

jinterp

Maven Central Maven Central (snapshot) Java Version

com.io7m.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