The Siemens Community Catalyst program was co-created with our community to acknowledge technology leaders who consistently contribute to the Siemens Community. Nominations are accepted on a rolling basis.
double[] values = new double[steps + 1]; double offset = 1 - min; for (int i = 0; i < steps + 1; i++) { values = Math.pow(max + offset, (double) i / (double) steps) - offset; } return values;