2021-03-22 14:32:08 +03:00
|
|
|
# Module kmath-ejml
|
2021-03-17 19:11:26 +03:00
|
|
|
|
2021-03-22 14:32:08 +03:00
|
|
|
EJML based linear algebra implementation.
|
2021-03-17 19:11:26 +03:00
|
|
|
|
2021-04-28 14:03:28 +03:00
|
|
|
- [ejml-vector](src/main/kotlin/space/kscience/kmath/ejml/EjmlVector.kt) : Point implementations.
|
|
|
|
- [ejml-matrix](src/main/kotlin/space/kscience/kmath/ejml/EjmlMatrix.kt) : Matrix implementation.
|
|
|
|
- [ejml-linear-space](src/main/kotlin/space/kscience/kmath/ejml/EjmlLinearSpace.kt) : LinearSpace implementations.
|
2021-03-17 19:11:26 +03:00
|
|
|
|
|
|
|
|
2021-03-22 14:32:08 +03:00
|
|
|
## Artifact:
|
|
|
|
|
2024-02-18 15:05:56 +03:00
|
|
|
The Maven coordinates of this project are `space.kscience:kmath-ejml:0.4.0-dev-3`.
|
2021-03-22 14:32:08 +03:00
|
|
|
|
|
|
|
**Gradle Kotlin DSL:**
|
|
|
|
```kotlin
|
|
|
|
repositories {
|
|
|
|
maven("https://repo.kotlin.link")
|
2021-04-28 14:03:28 +03:00
|
|
|
mavenCentral()
|
2021-03-22 14:32:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2024-02-18 15:05:56 +03:00
|
|
|
implementation("space.kscience:kmath-ejml:0.4.0-dev-3")
|
2021-03-22 14:32:08 +03:00
|
|
|
}
|
|
|
|
```
|