|
Re: how is that possible ? [message #81169 is a reply to message #81168] |
Thu, 23 August 2012 08:57  |
Lajos Foldy
Messages: 176 Registered: December 2011
|
Senior Member |
|
|
On Thursday, August 23, 2012 5:30:35 PM UTC+2, nata wrote:
> Hi guys,
>
>
>
> Could you explain this ?
>
>
>
> help, azimuth
>
> AZIMUTH LONG = 34
>
>
>
> x1=ww[pos] MOD sz_proj[0]
>
>
>
> help, azimuth, x1
>
> AZIMUTH LONG = 143
>
> AZIMUTH LONG = 143
>
>
>
> help, ww, pos, sz_proj
>
> WW LONG = Array[45]
>
> POS LONG = 0
>
> SZ_PROJ LONG = Array[2]
>
>
>
> LOL !!!!!!!!!
; test.pro
pro test_pro, azimuth, x1
help, azimuth
x1=143
print, 'after x1=143'
help, azimuth, x1
end
pro test
azimuth=34
test_pro, azimuth, azimuth
end
; test.pro end
IDL> test
% Compiled module: TEST.
AZIMUTH INT = 34
after x1=143
AZIMUTH INT = 143
AZIMUTH INT = 143
IDL>
regards,
Lajos
|
|
|