2021-03-22 14:32:08 +03:00
|
|
|
# Module kmath-for-real
|
|
|
|
|
|
|
|
Specialization of KMath APIs for Double numbers.
|
2020-11-29 13:32:20 +03:00
|
|
|
|
2024-03-27 09:51:23 +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
|
|
|
|
2021-03-22 14:32:08 +03:00
|
|
|
## Artifact:
|
|
|
|
|
2024-03-27 09:51:23 +03:00
|
|
|
The Maven coordinates of this project are `space.kscience:kmath-for-real:0.4.0`.
|
2021-03-22 14:32:08 +03:00
|
|
|
|
|
|
|
**Gradle Kotlin DSL:**
|
|
|
|
```kotlin
|
|
|
|
repositories {
|
|
|
|
maven("https://repo.kotlin.link")
|
2021-05-03 00:14:19 +03:00
|
|
|
mavenCentral()
|
2021-03-22 14:32:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2024-03-27 09:51:23 +03:00
|
|
|
implementation("space.kscience:kmath-for-real:0.4.0")
|
2021-03-22 14:32:08 +03:00
|
|
|
}
|
|
|
|
```
|