kmath/kmath-core
2021-01-16 15:51:36 +07:00
..
docs Documentation auto-generation update 2020-09-26 12:15:11 +03:00
src Update KDoc comments for Matrix classes, improve MatrixFeature API, implement new features with EJML matrix, delete inversion API from EJML in favor of InverseMatrixFeature, override point by EJML matrix 2021-01-16 15:51:36 +07:00
build.gradle.kts Readme update 2020-11-30 11:25:21 +03:00
README.md Minor: regenerate readme files 2021-01-05 20:16:42 +07:00

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-4.

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-4'
}

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-4")
}