logspace

open fun logspace(d1: Double, d2: Double, n: Int, base: Double): Array<Double>

generates n logarithmically spaced points between d1 and d2 using the provided base.

Return

an array of linearly space points.

Parameters

d1

The min value

d2

The max value

n

The number of points to generate

base

the logarithmic base to use