kmath/kmath-complex
Iaroslav Postovalov 70c0b614a3
Merge branch 'dev' into feature/quaternion
# Conflicts:
#	CHANGELOG.md
#	examples/src/main/kotlin/kscience/kmath/operations/ComplexDemo.kt
#	examples/src/main/kotlin/kscience/kmath/structures/ComplexND.kt
#	kmath-complex/src/commonMain/kotlin/kscience/kmath/complex/ComplexNDField.kt
#	kmath-core/src/commonMain/kotlin/kscience/kmath/structures/NDAlgebra.kt
#	kmath-core/src/commonTest/kotlin/kscience/kmath/structures/NDFieldTest.kt
2021-01-29 17:00:57 +07:00
..
docs Update readmes for Complex, minor update of build-script 2021-01-06 21:06:57 +07:00
src Merge branch 'dev' into feature/quaternion 2021-01-29 17:00:57 +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")
}