kmath/kmath-for-real
Alexander Nozik 45866b500f Merge remote-tracking branch 'origin/dev' into refactor/ndalgebra
# 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
2021-01-28 20:07:43 +03:00
..
docs kmath-for-real refactoring 2020-11-29 13:32:20 +03:00
src Merge remote-tracking branch 'origin/dev' into refactor/ndalgebra 2021-01-28 20:07:43 +03:00
build.gradle.kts kmath-for-real refactoring 2020-11-29 13:32:20 +03:00
README.md Minor: regenerate readme files 2021-01-05 20:16:42 +07:00

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.

Bintray release version: Download

Bintray development version: Download

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")
}