kmath/kmath-complex
2021-04-05 23:44:42 +07:00
..
docs Improve Dokka configuration 2021-03-22 20:41:18 +07:00
src Add pi and e constants, some unrelated changes 2021-04-05 23:44:42 +07:00
build.gradle.kts Remove MutableBufferND 2021-03-16 22:46:22 +03:00
README.md Some experiments with MST rendering 2021-03-31 16:12:07 +07:00

Module kmath-complex

Complex and hypercomplex number systems in KMath.

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")
}