2021-03-22 14:32:08 +03:00
|
|
|
# Module kmath-functions
|
2021-01-30 20:12:14 +03:00
|
|
|
|
2021-03-22 14:32:08 +03:00
|
|
|
Functions and interpolations.
|
2021-01-30 20:12:14 +03:00
|
|
|
|
2021-03-16 22:46:22 +03:00
|
|
|
- [piecewise](Piecewise functions.) : src/commonMain/kotlin/space/kscience/kmath/functions/Piecewise.kt
|
|
|
|
- [polynomials](Polynomial functions.) : src/commonMain/kotlin/space/kscience/kmath/functions/Polynomial.kt
|
|
|
|
- [linear interpolation](Linear XY interpolator.) : src/commonMain/kotlin/space/kscience/kmath/interpolation/LinearInterpolator.kt
|
|
|
|
- [spline interpolation](Cubic spline XY interpolator.) : src/commonMain/kotlin/space/kscience/kmath/interpolation/SplineInterpolator.kt
|
2021-01-30 20:12:14 +03:00
|
|
|
|
|
|
|
|
2021-03-22 14:32:08 +03:00
|
|
|
## Artifact:
|
|
|
|
|
2021-03-25 19:57:47 +03:00
|
|
|
The Maven coordinates of this project are `space.kscience:kmath-functions:0.3.0-dev-4`.
|
2021-03-22 14:32:08 +03:00
|
|
|
|
|
|
|
**Gradle:**
|
|
|
|
```gradle
|
|
|
|
repositories {
|
|
|
|
maven { url 'https://repo.kotlin.link' }
|
|
|
|
maven { url 'https://dl.bintray.com/hotkeytlt/maven' }
|
|
|
|
maven { url "https://dl.bintray.com/kotlin/kotlin-eap" } // include for builds based on kotlin-eap
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2021-03-25 19:57:47 +03:00
|
|
|
implementation 'space.kscience:kmath-functions:0.3.0-dev-4'
|
2021-03-22 14:32:08 +03:00
|
|
|
}
|
|
|
|
```
|
|
|
|
**Gradle Kotlin DSL:**
|
|
|
|
```kotlin
|
|
|
|
repositories {
|
|
|
|
maven("https://repo.kotlin.link")
|
|
|
|
maven("https://dl.bintray.com/kotlin/kotlin-eap") // include for builds based on kotlin-eap
|
|
|
|
maven("https://dl.bintray.com/hotkeytlt/maven") // required for a
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2021-03-25 19:57:47 +03:00
|
|
|
implementation("space.kscience:kmath-functions:0.3.0-dev-4")
|
2021-03-22 14:32:08 +03:00
|
|
|
}
|
|
|
|
```
|