If there are any IDL experts I would very much appreciate how would
you implement inplace in IDL (if available).

Not exactly like inplace, but in IDL you would use the temporary function to have some similar functionality, ie:

  a = temporary(a) + 1

would do the operation in-place, likewise a = sqrt(temporary(a)) + 1 etc. etc. The way it works internally is not as nice as inplace though.

                                        J.


_______________________________________________
Perldl mailing list
[email protected]
http://mailman.jach.hawaii.edu/mailman/listinfo/perldl

Reply via email to