2021-04-29 17:09:50 +03:00
|
|
|
# Module kmath-tensors
|
|
|
|
|
2021-05-08 14:36:37 +03:00
|
|
|
Common linear algebra operations on tensors.
|
|
|
|
|
2024-03-27 09:11:12 +03:00
|
|
|
- [tensor algebra](src/commonMain/kotlin/space/kscience/kmath/tensors/api/TensorAlgebra.kt) : Basic linear algebra
|
|
|
|
operations on tensors (plus, dot, etc.)
|
|
|
|
- [tensor algebra with broadcasting](src/commonMain/kotlin/space/kscience/kmath/tensors/core/BroadcastDoubleTensorAlgebra.kt) :
|
|
|
|
Basic linear algebra operations implemented with broadcasting.
|
|
|
|
- [linear algebra operations](src/commonMain/kotlin/space/kscience/kmath/tensors/api/LinearOpsTensorAlgebra.kt) :
|
|
|
|
Advanced linear algebra operations like LU decomposition, SVD, etc.
|
2021-04-29 17:09:50 +03:00
|
|
|
|
|
|
|
## Artifact:
|
|
|
|
|
2024-02-18 15:05:56 +03:00
|
|
|
The Maven coordinates of this project are `space.kscience:kmath-tensors:0.4.0-dev-3`.
|
2021-04-29 17:09:50 +03:00
|
|
|
|
|
|
|
**Gradle Kotlin DSL:**
|
2024-03-27 09:11:12 +03:00
|
|
|
|
2021-04-29 17:09:50 +03:00
|
|
|
```kotlin
|
|
|
|
repositories {
|
|
|
|
maven("https://repo.kotlin.link")
|
2021-05-08 14:36:37 +03:00
|
|
|
mavenCentral()
|
2021-04-29 17:09:50 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2024-02-18 15:05:56 +03:00
|
|
|
implementation("space.kscience:kmath-tensors:0.4.0-dev-3")
|
2021-04-29 17:09:50 +03:00
|
|
|
}
|
|
|
|
```
|