You could use an appropriate pair of inverse functions to do the smooth mapping.
A simple example using square root and power of 2:
using Plots
n = 100
x1, x2 = 0.0, 5000.0
x = LinRange(√x1, √x2, n).^2
plot(scatter(x), scatter(diff(x)))
You could use an appropriate pair of inverse functions to do the smooth mapping.
A simple example using square root and power of 2:
using Plots
n = 100
x1, x2 = 0.0, 5000.0
x = LinRange(√x1, √x2, n).^2
plot(scatter(x), scatter(diff(x)))