Alexander Nozik
c6ea423bd6
# Conflicts: # CHANGELOG.md # kmath-core/api/kmath-core.api # kmath-core/src/commonMain/kotlin/space/kscience/kmath/domains/HyperSquareDomain.kt # kmath-histograms/src/commonMain/kotlin/space/kscience/kmath/histogram/RealHistogram.kt # kmath-histograms/src/commonTest/kotlin/scietifik/kmath/histogram/MultivariateHistogramTest.kt # kmath-histograms/src/jsMain/kotlin/space/kscience/kmath/histogram/Counters.kt # kmath-histograms/src/jvmMain/kotlin/space/kscience/kmath/histogram/Counters.kt # kmath-histograms/src/jvmMain/kotlin/space/kscience/kmath/histogram/UnivariateHistogram.kt # kmath-histograms/src/jvmMain/kotlin/space/kscience/kmath/histogram/UnivariateHistogramSpace.kt |
||
---|---|---|
.. | ||
api | ||
docs | ||
src | ||
build.gradle.kts | ||
README.md |
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") }