kmath/kmath-functions
2023-02-03 19:32:53 +03:00
..
docs Improve Dokka configuration 2021-03-22 20:41:18 +07:00
src Major tensor refactoring 2022-11-05 16:14:23 +03:00
build.gradle.kts Move to build tools 0.14 2023-02-03 19:32:53 +03:00
README.md Fix readme 2022-07-24 12:01:02 +03:00

Module kmath-functions

Functions and interpolations.

Artifact:

The Maven coordinates of this project are space.kscience:kmath-functions:0.3.1-dev-1.

Gradle Groovy:

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

dependencies {
    implementation 'space.kscience:kmath-functions:0.3.1-dev-1'
}

Gradle Kotlin DSL:

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

dependencies {
    implementation("space.kscience:kmath-functions:0.3.1-dev-1")
}