Guest
#3611559
Hi everyone! I would like to create a for loop for code like this: if input >= 1.0 then output = 11111111111111 if input =0.999878 then output = 11111111111110 if input =0.999756 then output = 11111111111101 . . . . . if input = -0.999878 then output = 10000000000001 if input <= -1.0 then output = 10000000000000 It seams to be simple but apparently the paramater of the for loop can't be of real type. Do you know an other way to do the same thing I want but real compatible please ??