kmath/kmath-for-real/README.md

42 lines
1.6 KiB
Markdown
Raw Normal View History

2020-11-29 13:32:20 +03:00
# Real number specialization module (`kmath-for-real`)
2021-03-16 22:46:22 +03:00
- [DoubleVector](src/commonMain/kotlin/space/kscience/kmath/real/DoubleVector.kt) : Numpy-like operations for Buffers/Points
- [DoubleMatrix](src/commonMain/kotlin/space/kscience/kmath/real/DoubleMatrix.kt) : Numpy-like operations for 2d real structures
- [grids](src/commonMain/kotlin/space/kscience/kmath/structures/grids.kt) : Uniform grid generators
2020-11-29 13:32:20 +03:00
> #### Artifact:
>
2021-03-16 22:46:22 +03:00
> This module artifact: `space.kscience:kmath-for-real:0.3.0-dev-3`.
2020-11-29 13:32:20 +03:00
>
> Bintray release version: [ ![Download](https://api.bintray.com/packages/mipt-npm/kscience/kmath-for-real/images/download.svg) ](https://bintray.com/mipt-npm/kscience/kmath-for-real/_latestVersion)
>
> Bintray development version: [ ![Download](https://api.bintray.com/packages/mipt-npm/dev/kmath-for-real/images/download.svg) ](https://bintray.com/mipt-npm/dev/kmath-for-real/_latestVersion)
>
> **Gradle:**
>
> ```gradle
> repositories {
2021-02-19 10:52:56 +03:00
> maven { url 'https://repo.kotlin.link' }
2020-11-29 13:32:20 +03:00
> maven { url 'https://dl.bintray.com/hotkeytlt/maven' }
2021-02-19 10:52:56 +03:00
> maven { url "https://dl.bintray.com/kotlin/kotlin-eap" } // include for builds based on kotlin-eap
2020-11-29 13:32:20 +03:00
> }
>
> dependencies {
2021-03-16 22:46:22 +03:00
> implementation 'space.kscience:kmath-for-real:0.3.0-dev-3'
2020-11-29 13:32:20 +03:00
> }
> ```
> **Gradle Kotlin DSL:**
>
> ```kotlin
> repositories {
2021-02-19 10:52:56 +03:00
> 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
2020-11-29 13:32:20 +03:00
> }
>
> dependencies {
2021-03-16 22:46:22 +03:00
> implementation("space.kscience:kmath-for-real:0.3.0-dev-3")
2020-11-29 13:32:20 +03:00
> }
> ```