kmath/kmath-for-real
2021-04-16 00:15:00 +07:00
..
docs kmath-for-real refactoring 2020-11-29 13:32:20 +03:00
src Setup copyright headers, add references to third-party files, update LICENSE 2021-04-16 00:15:00 +07:00
build.gradle.kts Setup copyright headers, add references to third-party files, update LICENSE 2021-04-16 00:15:00 +07:00
README.md Bump readme 2021-03-15 20:17:04 +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.3.0-dev-2.

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
}

dependencies {
    implementation 'space.kscience:kmath-for-real:0.3.0-dev-2'
}

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
}

dependencies {
    implementation("space.kscience:kmath-for-real:0.3.0-dev-2")
}