forked from kscience/kmath
2.3 KiB
2.3 KiB
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-7
.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-7' }
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-7") }