1.6 KiB
1.6 KiB
ejml-simple support (kmath-ejml
)
This subproject implements the following features:
- ejml-vector : The Point implementation using SimpleMatrix.
- ejml-matrix : The Matrix implementation using SimpleMatrix.
- ejml-linear-space : The LinearSpace implementation using SimpleMatrix.
Artifact:
This module artifact:
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") }