kmath/kmath-core/README.md

1.3 KiB

The Core Module (kmath-core)

The core features of KMath:

  • algebras : Algebraic structures: contexts and elements
  • nd : Many-dimensional structures
  • buffers : One-dimensional structure
  • expressions : Functional Expressions
  • domains : Domains
  • autodif : Automatic differentiation

Artifact:

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

Gradle:

repositories {
    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-1'
}

Gradle Kotlin DSL:

repositories {
    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-1")
}