I was wondering if someone knew how to add more values to a structure variable in IDL?
For example, if we have the structure 'struct'
struct = {structname, x:[1,2,3], y:[10,11,12]}
And I specifically wanted to add [4,5,6] to x, something like:
struct.x.add([4,5,6])
How would I do this?