for loop with real

Guest #3611559
Rate this post
useful
not useful
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 ??
Guest #3611579
Rate this post
useful
not useful
For-loops with real/float types are allowed, but not always useful.

In this case I would use a linear function with no loop at all.

Something like "output = (input+1)*8192". Try it for a few input values.

Reply

Please log in before posting.

or

Log in with Google account

Registration is free and takes only a minute.

Register now