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.
2021-05-20 15:43:29 +03:00
- [tensor algebra ](src/commonMain/kotlin/space/kscience/kmath/tensors/api/TensorAlgebra.kt ) : Basic linear algebra operations on tensors (plus, dot, etc.)
2021-07-12 20:21:46 +03:00
- [tensor algebra with broadcasting ](src/commonMain/kotlin/space/kscience/kmath/tensors/core/BroadcastDoubleTensorAlgebra.kt ) : Basic linear algebra operations implemented with broadcasting.
2021-05-20 15:43:29 +03:00
- [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:
2022-03-31 22:23:34 +03:00
The Maven coordinates of this project are `space.kscience:kmath-tensors:0.3.0-dev-20` .
2021-04-29 17:09:50 +03:00
2022-03-31 22:23:34 +03:00
**Gradle Groovy:**
```groovy
2021-04-29 17:09:50 +03:00
repositories {
maven { url 'https://repo.kotlin.link' }
2021-05-08 14:36:37 +03:00
mavenCentral()
2021-04-29 17:09:50 +03:00
}
dependencies {
2022-03-31 22:23:34 +03:00
implementation 'space.kscience:kmath-tensors:0.3.0-dev-20'
2021-04-29 17:09:50 +03:00
}
```
**Gradle Kotlin DSL:**
```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 {
2022-03-31 22:23:34 +03:00
implementation("space.kscience:kmath-tensors:0.3.0-dev-20")
2021-04-29 17:09:50 +03:00
}
```