kmath/kmath-functions
Gleb Minaev 24944cdb16 Added support of power function to abstract structures.
Implemented exponentiation by squaring as default implementation of `power`. Updated docs in algebraicStub.kt and updated realisations in it.
2022-03-16 15:19:27 +03:00
..
docs Improve Dokka configuration 2021-03-22 20:41:18 +07:00
src Added support of power function to abstract structures. 2022-03-16 15:19:27 +03:00
build.gradle.kts Build infrastructure changes 2021-07-17 16:40:34 +07:00
README.md Regenerated READMEs 2022-03-13 03:44:16 +03:00

Module kmath-functions

Functions and interpolations.

Artifact:

The Maven coordinates of this project are space.kscience:kmath-functions:0.3.0-dev-19.

Gradle:

repositories {
    maven { url 'https://repo.kotlin.link' }
    mavenCentral()
}

dependencies {
    implementation 'space.kscience:kmath-functions:0.3.0-dev-19'
}

Gradle Kotlin DSL:

repositories {
    maven("https://repo.kotlin.link")
    mavenCentral()
}

dependencies {
    implementation("space.kscience:kmath-functions:0.3.0-dev-19")
}