kmath/kmath-complex
2021-03-16 20:56:20 +03:00
..
docs Update readmes for Complex, minor update of build-script 2021-01-06 21:06:57 +07:00
src Structure naming change 2021-03-16 20:56:20 +03:00
build.gradle.kts Gradle plugin 0.8.0 2021-02-21 16:13:40 +03:00
README.md Bump readme 2021-03-15 19:41:37 +03:00

The Core Module (kmath-core)

Complex and hypercomplex number systems in KMath:

Artifact:

This module artifact: space.kscience:kmath-complex:0.3.0-dev-2.

Bintray release version: Download

Bintray development version: Download

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
//     Uncomment if repo.kotlin.link is unavailable 
//     maven { url 'https://dl.bintray.com/mipt-npm/kscience' }
//     maven { url 'https://dl.bintray.com/mipt-npm/dev' }
}

dependencies {
    implementation 'space.kscience:kmath-complex:0.3.0-dev-2'
}

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
//     Uncomment if repo.kotlin.link is unavailable 
//     maven("https://dl.bintray.com/mipt-npm/kscience")
//     maven("https://dl.bintray.com/mipt-npm/dev")
}

dependencies {
    implementation("space.kscience:kmath-complex:0.3.0-dev-2")
}