All Downloads are FREE. Search and download functionalities are using the official Maven repository.

utils.randrange.kt Maven / Gradle / Ivy

package utils

fun randrange(n: Int, vmin: Double, vmax: Double): List {
    val range = 0..n
    return range.map { (vmax - vmin) * Math.random() + vmin}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy