I've found an interesting issue in Julia that, though it seems trivial in the application I've given, is really messing up my code and my ability to guarantee its performance.
Apparently, 44099 * (1/1) == 44100, which in my book is a very massive error. I wrote a resample() function for the project I'm working on, and I found that rounding errors in Julia have made the language unacceptable to my superiors. Is this a fundamental issue with Julia, or is there something I can do to fix this? Here is a screenshot of a simple script that demonstrates this: http://i.imgur.com/mA9hpqw.png Why does this happen?
