.. | ||
docs | ||
src | ||
build.gradle.kts | ||
README.md |
The Core Module (kmath-core
)
Complex and hypercomplex number systems in KMath:
- complex : Complex Numbers
- quaternion : Quaternions
Artifact:
This module artifact:
kscience.kmath:kmath-complex:0.2.0-dev-6
.Gradle:
repositories { maven { url "https://dl.bintray.com/kotlin/kotlin-eap" } maven { url 'https://dl.bintray.com/mipt-npm/kscience' } maven { url 'https://dl.bintray.com/mipt-npm/dev' } maven { url 'https://dl.bintray.com/hotkeytlt/maven' } } dependencies { implementation 'kscience.kmath:kmath-complex:0.2.0-dev-6' }
Gradle Kotlin DSL:
repositories { maven("https://dl.bintray.com/kotlin/kotlin-eap") maven("https://dl.bintray.com/mipt-npm/kscience") maven("https://dl.bintray.com/mipt-npm/dev") maven("https://dl.bintray.com/hotkeytlt/maven") } dependencies { implementation("kscience.kmath:kmath-complex:0.2.0-dev-6") }