kmath/kmath-for-real
2021-01-05 20:16:42 +07:00
..
docs kmath-for-real refactoring 2020-11-29 13:32:20 +03:00
src Implemented #131 2020-12-01 21:21:56 +03:00
build.gradle.kts kmath-for-real refactoring 2020-11-29 13:32:20 +03:00
README.md Minor: regenerate readme files 2021-01-05 20:16:42 +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-4.

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-4'
}

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-4")
}