kmath/kmath-for-real
2021-05-04 17:22:09 +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 MST rendering: support infix division, use arcsin instead sin^-1 form for inverse trigonometric functions 2021-05-04 17:22:09 +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' }
    mavenCentral()
}

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

Gradle Kotlin DSL:

repositories {
    maven("https://repo.kotlin.link")
    mavenCentral()
}

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