kmath/kmath-ejml
2023-05-04 00:44:18 +03:00
..
docs
src added new svd algorithm (Golub Kahan) and used by default for svd 2023-05-04 00:44:18 +03:00
build.gradle.kts
README.md

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