I need an alternative to this simple math.
float FreqA = 28.333334;
FreqA = FreqA+0.000001;
println(FreqA);
However this results in 28.333336. How do I perform this math to get the correct answer of 28.333335?
I have tried converting the float to an integer performing the math, than converting back to a float, but I get the same mathematical errors.