kmath/kmath-histograms
Alexander Nozik 86d89f89f9
Update kmath-histograms/src/commonMain/kotlin/space/kscience/kmath/histogram/IndexedHistogramGroup.kt
Co-authored-by: Iaroslav Postovalov <38042667+CommanderTvis@users.noreply.github.com>
2022-04-10 10:29:44 +03:00
..
src Update kmath-histograms/src/commonMain/kotlin/space/kscience/kmath/histogram/IndexedHistogramGroup.kt 2022-04-10 10:29:44 +03:00
build.gradle.kts [WIP] Another histogram refactor 2022-04-05 23:23:29 +03:00
README.md Upgrade gradle tools 2022-04-01 02:23:34 +07:00

Module kmath-histograms

Usage

Artifact:

The Maven coordinates of this project are space.kscience:kmath-histograms:0.3.0-dev-20.

Gradle Groovy:

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

dependencies {
    implementation 'space.kscience:kmath-histograms:0.3.0-dev-20'
}

Gradle Kotlin DSL:

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

dependencies {
    implementation("space.kscience:kmath-histograms:0.3.0-dev-20")
}