kmath/kmath-complex/README.md

24 lines
591 B
Markdown
Raw Normal View History

2021-03-22 14:32:08 +03:00
# Module kmath-complex
2021-03-22 14:32:08 +03:00
Complex and hypercomplex number systems in KMath.
2024-03-27 09:11:12 +03:00
- [complex](src/commonMain/kotlin/space/kscience/kmath/complex/Complex.kt) : Complex numbers operations
- [quaternion](src/commonMain/kotlin/space/kscience/kmath/complex/Quaternion.kt) : Quaternions and their composition
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-complex:0.4.0-dev-3`.
2021-03-22 14:32:08 +03:00
**Gradle Kotlin DSL:**
2024-03-27 09:11:12 +03:00
2021-03-22 14:32:08 +03:00
```kotlin
repositories {
maven("https://repo.kotlin.link")
mavenCentral()
2021-03-22 14:32:08 +03:00
}
dependencies {
2024-02-18 15:05:56 +03:00
implementation("space.kscience:kmath-complex:0.4.0-dev-3")
2021-03-22 14:32:08 +03:00
}
```