kmath/kmath-for-real
2021-04-30 19:48:12 +07:00
..
docs Improve Dokka configuration 2021-03-22 20:41:18 +07:00
src Merge branch 'master' into dev 2021-04-16 18:02:44 +07:00
build.gradle.kts Fix benchmarks 2021-04-16 22:43:10 +03:00
README.md Rewrite EJML module by dropping ejml-simple abstraction level; multiple build script changes 2021-04-30 19:48:12 +07:00

Module kmath-for-real

Specialization of KMath APIs for Double numbers.

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

Artifact:

The Maven coordinates of this project are space.kscience:kmath-for-real:0.3.0-dev-7.

Gradle:

repositories {
    maven { url 'https://repo.kotlin.link' }
    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-7'
}

Gradle Kotlin DSL:

repositories {
    maven("https://repo.kotlin.link")
    maven("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-7")
}