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
|
|
|
|
2024-03-27 09:11:12 +03:00
|
|
|
- [piecewise](src/commonMain/kotlin/space/kscience/kmath/functions/Piecewise.kt) : Piecewise functions.
|
|
|
|
- [polynomials](src/commonMain/kotlin/space/kscience/kmath/functions/Polynomial.kt) : Polynomial functions.
|
|
|
|
- [linear interpolation](src/commonMain/kotlin/space/kscience/kmath/interpolation/LinearInterpolator.kt) : Linear XY
|
|
|
|
interpolator.
|
|
|
|
- [spline interpolation](src/commonMain/kotlin/space/kscience/kmath/interpolation/SplineInterpolator.kt) : Cubic spline
|
|
|
|
XY interpolator.
|
|
|
|
- [integration](#) : Univariate and multivariate quadratures
|
2021-01-30 20:12:14 +03:00
|
|
|
|
2021-03-22 14:32:08 +03:00
|
|
|
## Artifact:
|
|
|
|
|
2024-02-18 15:05:56 +03:00
|
|
|
The Maven coordinates of this project are `space.kscience:kmath-functions:0.4.0-dev-3`.
|
2021-03-22 14:32:08 +03:00
|
|
|
|
|
|
|
**Gradle Kotlin DSL:**
|
2024-03-27 09:11:12 +03:00
|
|
|
|
2021-03-22 14:32:08 +03:00
|
|
|
```kotlin
|
|
|
|
repositories {
|
|
|
|
maven("https://repo.kotlin.link")
|
2021-05-03 00:14:19 +03:00
|
|
|
mavenCentral()
|
2021-03-22 14:32:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2024-02-18 15:05:56 +03:00
|
|
|
implementation("space.kscience:kmath-functions:0.4.0-dev-3")
|
2021-03-22 14:32:08 +03:00
|
|
|
}
|
|
|
|
```
|