forked from kscience/kmath
2.6 KiB
2.6 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:
space.kscience:kmath-core:0.2.0
.Gradle:
repositories { maven { url 'https://repo.kotlin.link' } maven { url 'https://dl.bintray.com/hotkeytlt/maven' } maven { url "https://dl.bintray.com/kotlin/kotlin-eap" } // include for builds based on kotlin-eap // Uncomment if repo.kotlin.link is unavailable // maven { url 'https://dl.bintray.com/mipt-npm/kscience' } // maven { url 'https://dl.bintray.com/mipt-npm/dev' } } dependencies { implementation 'space.kscience:kmath-core:0.2.0' }
Gradle Kotlin DSL:
repositories { maven("https://repo.kotlin.link") maven("https://dl.bintray.com/kotlin/kotlin-eap") // include for builds based on kotlin-eap maven("https://dl.bintray.com/hotkeytlt/maven") // required for a // Uncomment if repo.kotlin.link is unavailable // maven("https://dl.bintray.com/mipt-npm/kscience") // maven("https://dl.bintray.com/mipt-npm/dev") } dependencies { implementation("space.kscience:kmath-core:0.2.0") }