Hello everyone,
I was trying out the FIX command and i couldnt understand all of its
arguments. Can you help me with this please?
Here is what i did..
IDL> c=[1.2,-3.4,5.]
IDL> print,fix(c)
1 -3 5
IDL> print,fix(c,0)
-26214
IDL> print,fix(c,1)
-26215
IDL> print,fix(c,2)
16281
IDL> print,fix(c,0,1)
-26214
IDL> print,fix(c,0,2)
-26214 16281
Thanks for your help,
regards,
vino


|