kmath/kmath-for-real
2021-03-14 09:43:22 +03:00
..
docs kmath-for-real refactoring 2020-11-29 13:32:20 +03:00
src Vector space refactor (optimization) 2021-03-14 09:43:22 +03:00
build.gradle.kts Gradle plugin 0.8.0 2021-02-21 16:13:40 +03:00
README.md Gradle plugin 0.8.0 2021-02-21 16:13:40 +03: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: space.kscience:kmath-for-real:0.2.0.

Bintray release version: Download

Bintray development version: Download

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
//     Uncomment if repo.kotlin.link is unavailable 
//     maven { url 'https://dl.bintray.com/mipt-npm/kscience' }
//     maven { url 'https://dl.bintray.com/mipt-npm/dev' }
}

dependencies {
    implementation 'space.kscience:kmath-for-real:0.2.0'
}

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
//     Uncomment if repo.kotlin.link is unavailable 
//     maven("https://dl.bintray.com/mipt-npm/kscience")
//     maven("https://dl.bintray.com/mipt-npm/dev")
}

dependencies {
    implementation("space.kscience:kmath-for-real:0.2.0")
}