kmath/kmath-for-real
2021-02-18 11:17:28 +03:00
..
docs kmath-for-real refactoring 2020-11-29 13:32:20 +03:00
src Change package name to space.kscience 2021-02-18 11:17:28 +03:00
build.gradle.kts kmath-for-real refactoring 2020-11-29 13:32:20 +03:00
README.md Update README 2021-02-11 23:35:45 +07:00

Real number specialization module (kmath-for-real)

  • RealVector : Numpy-like operations for Buffers/Points
  • RealMatrix : Numpy-like operations for 2d real structures
  • grids : Uniform grid generators

Artifact:

This module artifact: kscience.kmath:kmath-for-real:0.2.0-dev-7.

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-for-real:0.2.0-dev-7'
}

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-for-real:0.2.0-dev-7")
}