2021-03-22 18:32:08 +07:00
|
|
|
# Module kmath-complex
|
2021-01-06 21:06:57 +07:00
|
|
|
|
2021-03-22 18:32:08 +07:00
|
|
|
Complex and hypercomplex number systems in KMath.
|
2021-01-06 21:06:57 +07:00
|
|
|
|
2024-03-27 09:51:23 +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-01-06 21:06:57 +07:00
|
|
|
|
2021-03-22 18:32:08 +07:00
|
|
|
## Artifact:
|
|
|
|
|
2024-03-27 09:51:23 +03:00
|
|
|
The Maven coordinates of this project are `space.kscience:kmath-complex:0.4.0`.
|
2021-03-22 18:32:08 +07:00
|
|
|
|
|
|
|
**Gradle Kotlin DSL:**
|
|
|
|
```kotlin
|
|
|
|
repositories {
|
|
|
|
maven("https://repo.kotlin.link")
|
2021-04-28 18:03:28 +07:00
|
|
|
mavenCentral()
|
2021-03-22 18:32:08 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2024-03-27 09:51:23 +03:00
|
|
|
implementation("space.kscience:kmath-complex:0.4.0")
|
2021-03-22 18:32:08 +07:00
|
|
|
}
|
|
|
|
```
|