I have to use an algorithm which expects a matrix of integers as input. The input I have is real valued, therefore I want to convert the input it to integer before passing it to the algorithm.
I though of scaling the input by a large constant and then rounding it to integers. This looks like a good solution but how does one decide a good constant to be used, specially since the range of float input could vary from case to case? Any other ideas are also welcome?
scaling the input by a large constant, I expect (s)he means multiplying each float by that value before rounding; this is how precision is improved. If the maximum value can be determined such that the constant will not cause overflow then the maximum precision is attained within the width of the integer. – mah Sep 13 '12 at 12:40range_max_exclusive >= any element. Pick a valid float value which has a valid integer value when casted/rounded and you are good with it. – Seçkin Savaşçı Sep 13 '12 at 12:45