Hi!
I was trying out the 'FIX' command and i couldnt understand all the
arguments present. Can someone help me please? below is whats 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


|