io.github.danielTucano.utils.randrange.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of matplotlib4k Show documentation
Show all versions of matplotlib4k Show documentation
Matplotlib for kotlin: A simple graph plot library for kotlin with powerful python matplotlib
The newest version!
package io.github.danielTucano.utils
fun randrange(n: Int, vmin: Double, vmax: Double): List {
val range = 0..n
return range.map { (vmax - vmin) * Math.random() + vmin}
}