2020-09-06 19:03:24 +03:00
|
|
|
# The Core Module (`kmath-core`)
|
2020-08-08 11:51:04 +03:00
|
|
|
|
|
|
|
The core features of KMath:
|
2020-09-21 15:47:47 +03:00
|
|
|
$featuresString
|
2020-08-08 11:51:04 +03:00
|
|
|
|
|
|
|
> #### Artifact:
|
2020-09-21 15:47:47 +03:00
|
|
|
> This module artifact: `$group:kmath-core:$version`.
|
2020-08-08 11:51:04 +03:00
|
|
|
>
|
|
|
|
> **Gradle:**
|
|
|
|
>
|
|
|
|
> ```gradle
|
|
|
|
> repositories {
|
2020-09-20 22:39:27 +03:00
|
|
|
> maven { url 'https://dl.bintray.com/mipt-npm/kscience' }
|
2020-08-08 11:51:04 +03:00
|
|
|
> maven { url 'https://dl.bintray.com/mipt-npm/dev' }
|
|
|
|
> maven { url https://dl.bintray.com/hotkeytlt/maven' }
|
|
|
|
> }
|
|
|
|
>
|
|
|
|
> dependencies {
|
2020-09-21 15:47:47 +03:00
|
|
|
> implementation '$group:kmath-core:$version'
|
2020-08-08 11:51:04 +03:00
|
|
|
> }
|
|
|
|
> ```
|
|
|
|
> **Gradle Kotlin DSL:**
|
|
|
|
>
|
|
|
|
> ```kotlin
|
|
|
|
> repositories {
|
2020-09-20 22:39:27 +03:00
|
|
|
> maven("https://dl.bintray.com/mipt-npm/kscience")
|
2020-08-08 11:51:04 +03:00
|
|
|
> maven("https://dl.bintray.com/mipt-npm/dev")
|
|
|
|
> maven("https://dl.bintray.com/hotkeytlt/maven")
|
|
|
|
> }
|
|
|
|
>
|
2020-09-20 22:39:27 +03:00
|
|
|
> dependencies {
|
2020-09-21 15:47:47 +03:00
|
|
|
> implementation("$group:kmath-core:$version")
|
2020-08-08 11:51:04 +03:00
|
|
|
> }
|
|
|
|
> ```
|