I have an x-axis which is in logarithmic scale representing frequency, I would like to have NumPoints on this axis that are equidistant on the log scale, I have the following variables:
Fmin = 100 Fmax = 4000 or 8000 NumPoints = 10
What formula should i use to calculate where the NumPoints-2 points between Fmin and Fmax should go? (Fmin and Fmax should each have a point on them)
Additionally, when i switch from Fmax = 4000 -> 8000 i would like to keep the equidistant points already calculated between Fmin->4000 and add extra points between 4000 and 8000.
Summary
Generate NumPoints between FMan -> Fmax(4000), equidistant on a log scale. Change Fmax -> 8000 Generate more points between 4000->8000.
Many thanks in advance
Andy