kmath/kmath-tensors
2021-05-07 14:13:07 +01:00
..
docs add README and documentation for the main functions of tensor algebra 2021-04-29 17:09:50 +03:00
src Throwable value method 2021-05-07 14:13:07 +01:00
build.gradle.kts refactor 2021-05-01 20:45:23 +03:00
README.md English typo 2021-04-29 18:48:41 +01:00

Module kmath-tensors

Common operations on tensors, the API consists of:

The library offers a multiplatform implementation for this interface over the Double's. As a highlight, the user can find:

Artifact:

The Maven coordinates of this project are space.kscience:kmath-tensors:0.3.0-dev-7.

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 {
    implementation 'space.kscience:kmath-tensors:0.3.0-dev-7'
}

Gradle Kotlin DSL:

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 {
    implementation("space.kscience:kmath-tensors:0.3.0-dev-7")
}