41 lines
945 B
Markdown
41 lines
945 B
Markdown
# The Core Module (`kmath-core`)
|
|
|
|
The core features of KMath:
|
|
|
|
- Algebraic structures: contexts and elements.
|
|
- ND structures.
|
|
- Buffers.
|
|
- Functional Expressions.
|
|
- Domains.
|
|
- Automatic differentiation.
|
|
|
|
> #### Artifact:
|
|
> This module is distributed in the artifact `kscience.kmath:kmath-core:0.1.4-dev-8`.
|
|
>
|
|
> **Gradle:**
|
|
>
|
|
> ```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.1.4-dev-8'
|
|
> }
|
|
> ```
|
|
> **Gradle Kotlin DSL:**
|
|
>
|
|
> ```kotlin
|
|
> 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.1.4-dev-8")
|
|
> }
|
|
> ```
|