kmath/kmath-complex
2021-01-30 17:19:46 +07:00
..
docs Update readmes for Complex, minor update of build-script 2021-01-06 21:06:57 +07:00
src Fix after-merge problems 2021-01-30 17:19:46 +07:00
build.gradle.kts Fix after-merge problems 2021-01-20 14:56:09 +07:00
README.md Update readmes for Complex, minor update of build-script 2021-01-06 21:06:57 +07:00

The Core Module (kmath-core)

Complex and hypercomplex number systems in KMath:

Artifact:

This module artifact: kscience.kmath:kmath-complex:0.2.0-dev-4.

Bintray release version: Download

Bintray development version: Download

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-4'
}

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