forked from kscience/kmath
Alexander Nozik
3de8976ea5
# Conflicts: # buildSrc/gradle.properties # gradle/wrapper/gradle-wrapper.properties |
||
---|---|---|
.. | ||
docs | ||
src | ||
build.gradle.kts | ||
README.md |
Module kmath-for-real
Specialization of KMath APIs for Double numbers.
- DoubleVector : Numpy-like operations for Buffers/Points
- DoubleMatrix : Numpy-like operations for 2d real structures
- grids : Uniform grid generators
Artifact:
The Maven coordinates of this project are space.kscience:kmath-for-real:0.3.0-dev-20
.
Gradle Groovy:
repositories {
maven { url 'https://repo.kotlin.link' }
mavenCentral()
}
dependencies {
implementation 'space.kscience:kmath-for-real:0.3.0-dev-20'
}
Gradle Kotlin DSL:
repositories {
maven("https://repo.kotlin.link")
mavenCentral()
}
dependencies {
implementation("space.kscience:kmath-for-real:0.3.0-dev-20")
}