In need of array help! [message #61302] |
Fri, 11 July 2008 10:11 |
aaron.pink
Messages: 2 Registered: July 2008
|
Junior Member |
|
|
Hi folks, I'm new to IDL and I'm having a bit of trouble with array
manipulation.
I have a program that encounters data sets of varying sizes, and I
need to store the information into an array contained in an object.
I've tried using the array resizing techniques found in
http://www.dfanning.com/code_tips/nullarray.html, but no matter what I
to, I am unable to actually change the size!
Any suggestions would be very very very helpful!
Thanks,
Aaron
-------------
struct = {PermResults, $
SliceNum: 0.0, $
roiValues: fltarr(100000), $ ;100000 is far more than I
need, but still a terrible way to do it.
area: 0.0, $
perimeter: 0.0, $
pxlcount: 0L}
---------------------
|
|
|