kmath/kmath-gsl
Iaroslav Postovalov a0186844f5
Update README files
2021-01-31 15:36:35 +07:00
..
docs Update README files 2021-01-31 15:36:35 +07:00
src Update README files 2021-01-31 15:36:35 +07:00
build.gradle.kts Update README files 2021-01-31 15:36:35 +07:00
README.md Update README files 2021-01-31 15:36:35 +07:00

GNU Scientific Library Integration (kmath-core)

This subproject implements the following features:

  • matrix-contexts : Matrix Contexts over Double, Float and Complex implemented with GSL

Artifact:

This module artifact: kscience.kmath:kmath-gsl:0.2.0-dev-6.

Bintray release version: Download

Bintray development version: Download

Gradle:

repositories {
    maven { url "https://dl.bintray.com/kotlin/kotlin-eap" }
    maven { url 'https://dl.bintray.com/mipt-npm/kscience' }
    maven { url 'https://dl.bintray.com/mipt-npm/dev' }
    maven { url 'https://dl.bintray.com/hotkeytlt/maven' }

}

dependencies {
    implementation 'kscience.kmath:kmath-gsl:0.2.0-dev-6'
}

Gradle Kotlin DSL:

repositories {
    maven("https://dl.bintray.com/kotlin/kotlin-eap")
    maven("https://dl.bintray.com/mipt-npm/kscience")
    maven("https://dl.bintray.com/mipt-npm/dev")
    maven("https://dl.bintray.com/hotkeytlt/maven")
}

dependencies {
    implementation("kscience.kmath:kmath-gsl:0.2.0-dev-6")
}