kmath/kmath-core
2021-01-30 20:12:14 +03:00
..
docs Documentation auto-generation update 2020-09-26 12:15:11 +03:00
src Merge remote-tracking branch 'origin/dev' into refactor/ndalgebra 2021-01-28 20:07:43 +03:00
build.gradle.kts Documentation update. 2021-01-30 20:12:14 +03:00
README.md Documentation update. 2021-01-30 20:12:14 +03:00

The Core Module (kmath-core)

The core features of KMath:

  • algebras : Algebraic structures like rings, spaces and fields.
  • nd : Many-dimensional structures and operations on them.
  • linear : Basic linear algebra operations (sums, products, etc.), backed by the Space API. Advanced linear algebra operations like matrix inversion and LU decomposition.
  • buffers : One-dimensional structure
  • expressions : By writing a single mathematical expression once, users will be able to apply different types of objects to the expression by providing a context. Expressions can be used for a wide variety of purposes from high performance calculations to code generation.
  • domains : Domains
  • autodif : Automatic differentiation

Artifact:

This module artifact: kscience.kmath:kmath-core:0.2.0-dev-6.

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-core:0.2.0-dev-6'
}

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-core:0.2.0-dev-6")
}