2021-03-22 14:32:08 +03:00
|
|
|
# Module kmath-complex
|
2021-01-06 17:06:57 +03:00
|
|
|
|
2021-03-22 14:32:08 +03:00
|
|
|
Complex and hypercomplex number systems in KMath.
|
2021-01-06 17:06:57 +03:00
|
|
|
|
2021-03-16 22:46:22 +03:00
|
|
|
- [complex](src/commonMain/kotlin/space/kscience/kmath/complex/Complex.kt) : Complex Numbers
|
|
|
|
- [quaternion](src/commonMain/kotlin/space/kscience/kmath/complex/Quaternion.kt) : Quaternions
|
2021-01-06 17:06:57 +03:00
|
|
|
|
|
|
|
|
2021-03-22 14:32:08 +03:00
|
|
|
## Artifact:
|
|
|
|
|
2021-06-09 17:40:47 +03:00
|
|
|
The Maven coordinates of this project are `space.kscience:kmath-complex:0.3.0-dev-13`.
|
2021-03-22 14:32:08 +03:00
|
|
|
|
|
|
|
**Gradle:**
|
|
|
|
```gradle
|
|
|
|
repositories {
|
|
|
|
maven { url 'https://repo.kotlin.link' }
|
2021-04-28 14:03:28 +03:00
|
|
|
mavenCentral()
|
2021-03-22 14:32:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2021-06-09 17:40:47 +03:00
|
|
|
implementation 'space.kscience:kmath-complex:0.3.0-dev-13'
|
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 {
|
2021-06-09 17:40:47 +03:00
|
|
|
implementation("space.kscience:kmath-complex:0.3.0-dev-13")
|
2021-03-22 14:32:08 +03:00
|
|
|
}
|
|
|
|
```
|