forked from kscience/kmath
Alexander Nozik
45866b500f
# Conflicts: # CHANGELOG.md # examples/src/benchmarks/kotlin/kscience/kmath/benchmarks/LinearAlgebraBenchmark.kt # kmath-commons/src/main/kotlin/kscience/kmath/commons/linear/CMMatrix.kt # kmath-for-real/src/commonMain/kotlin/kscience/kmath/real/RealMatrix.kt |
||
---|---|---|
.. | ||
docs | ||
src | ||
build.gradle.kts | ||
README.md |
Real number specialization module (kmath-for-real
)
- RealVector : Numpy-like operations for Buffers/Points
- RealMatrix : Numpy-like operations for 2d real structures
- grids : Uniform grid generators
Artifact:
This module artifact:
kscience.kmath:kmath-for-real:0.2.0-dev-4
.Gradle:
repositories { maven { url "https://dl.bintray.com/kotlin/kotlin-eap" } 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-for-real:0.2.0-dev-4' }
Gradle Kotlin DSL:
repositories { maven("https://dl.bintray.com/kotlin/kotlin-eap") 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-for-real:0.2.0-dev-4") }