kmath/kmath-ejml
2023-11-22 14:32:56 +03:00
..
docs Improve Dokka configuration 2021-03-22 20:41:18 +07:00
src Add Buffer.asList() 2023-11-22 14:32:56 +03:00
build.gradle.kts Refactor for build tools 0.13.0 2022-09-04 20:59:30 +03:00
README.md Move annotations to base package. Fix series 2023-04-07 19:55:34 +03:00

Module kmath-ejml

EJML based linear algebra implementation.

Artifact:

The Maven coordinates of this project are space.kscience:kmath-ejml:0.4.0-dev-1.

Gradle Groovy:

repositories {
    maven { url 'https://repo.kotlin.link' }
    mavenCentral()
}

dependencies {
    implementation 'space.kscience:kmath-ejml:0.4.0-dev-1'
}

Gradle Kotlin DSL:

repositories {
    maven("https://repo.kotlin.link")
    mavenCentral()
}

dependencies {
    implementation("space.kscience:kmath-ejml:0.4.0-dev-1")
}