1.0 KiB
1.0 KiB
Module kmath-complex
Complex and hypercomplex number systems in KMath.
- complex : Complex Numbers
- quaternion : Quaternions
Artifact:
The Maven coordinates of this project are space.kscience:kmath-complex:0.3.0-dev-4
.
Gradle:
repositories {
maven { url 'https://repo.kotlin.link' }
maven { url 'https://dl.bintray.com/hotkeytlt/maven' }
maven { url "https://dl.bintray.com/kotlin/kotlin-eap" } // include for builds based on kotlin-eap
}
dependencies {
implementation 'space.kscience:kmath-complex:0.3.0-dev-4'
}
Gradle Kotlin DSL:
repositories {
maven("https://repo.kotlin.link")
maven("https://dl.bintray.com/kotlin/kotlin-eap") // include for builds based on kotlin-eap
maven("https://dl.bintray.com/hotkeytlt/maven") // required for a
}
dependencies {
implementation("space.kscience:kmath-complex:0.3.0-dev-4")
}