forked from kscience/kmath
af2e437a48
# Conflicts: # README.md # kmath-ast/README.md # kmath-complex/README.md # kmath-core/README.md # kmath-ejml/README.md # kmath-for-real/README.md # kmath-functions/README.md # kmath-jafama/README.md # kmath-kotlingrad/README.md # kmath-nd4j/README.md # kmath-tensors/README.md |
||
---|---|---|
.. | ||
docs | ||
src | ||
build.gradle.kts | ||
README.md |
Module kmath-functions
Functions and interpolations.
- piecewise : Piecewise functions.
- polynomials : Polynomial functions.
- linear interpolation : Linear XY interpolator.
- spline interpolation : Cubic spline XY interpolator.
- integration : Univariate and multivariate quadratures
Artifact:
The Maven coordinates of this project are space.kscience:kmath-functions:0.3.0
.
Gradle Groovy:
repositories {
maven { url 'https://repo.kotlin.link' }
mavenCentral()
}
dependencies {
implementation 'space.kscience:kmath-functions:0.3.0'
}
Gradle Kotlin DSL:
repositories {
maven("https://repo.kotlin.link")
mavenCentral()
}
dependencies {
implementation("space.kscience:kmath-functions:0.3.0")
}