kmath/kmath-ejml
Alexander Nozik e216fd50f5 Merge remote-tracking branch 'origin/dev' into dev
# Conflicts:
#	build.gradle.kts
#	kmath-core/src/commonMain/kotlin/space/kscience/kmath/misc/XYPointSet.kt
#	kmath-ejml/src/main/kotlin/space/kscience/kmath/ejml/EjmlLinearSpace.kt
2021-03-24 13:33:08 +03:00
..
docs Improve Dokka configuration 2021-03-22 20:41:18 +07:00
src Merge remote-tracking branch 'origin/dev' into dev 2021-03-24 13:33:08 +03:00
build.gradle.kts Some adjustments to the EJML module 2021-03-17 23:11:26 +07:00
README.md Improve Dokka configuration 2021-03-22 20:41:18 +07:00

Module kmath-ejml

EJML based linear algebra implementation.

Artifact:

The Maven coordinates of this project are space.kscience:kmath-ejml:0.3.0-dev-3.

Gradle:

repositories {
    maven { url 'https://repo.kotlin.link' }
    maven { url 'https://dl.bintray.com/hotkeytlt/maven' }
    maven { url "https://dl.bintray.com/kotlin/kotlin-eap" } // include for builds based on kotlin-eap
}

dependencies {
    implementation 'space.kscience:kmath-ejml:0.3.0-dev-3'
}

Gradle Kotlin DSL:

repositories {
    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
}

dependencies {
    implementation("space.kscience:kmath-ejml:0.3.0-dev-3")
}