forked from kscience/kmath
.. | ||
docs | ||
src | ||
build.gradle.kts | ||
README.md |
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
.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") }