kmath/kmath-complex
2023-05-26 11:38:50 +03:00
..
docs Improve Dokka configuration 2021-03-22 20:41:18 +07:00
src Move annotations to base package. Fix series 2023-04-07 19:55:34 +03:00
build.gradle.kts Update build tools 2023-05-26 11:38:50 +03:00
README.md Move annotations to base package. Fix series 2023-04-07 19:55:34 +03:00

Module kmath-complex

Complex and hypercomplex number systems in KMath.

  • complex : Complex numbers operations
  • quaternion : Quaternions and their composition

Artifact:

The Maven coordinates of this project are space.kscience:kmath-complex:0.4.0-dev-1.

Gradle Groovy:

repositories {
    maven { url 'https://repo.kotlin.link' }
    mavenCentral()
}

dependencies {
    implementation 'space.kscience:kmath-complex:0.4.0-dev-1'
}

Gradle Kotlin DSL:

repositories {
    maven("https://repo.kotlin.link")
    mavenCentral()
}

dependencies {
    implementation("space.kscience:kmath-complex:0.4.0-dev-1")
}