Hello,
I want to sum the columns of a 20 x 20 array. So far I have used:
SUM (myarray,DIM=1)
which gives back an 20 element array with the sum of each row. I want to select the rows individually.
Is there a way of doing this using the intrinsic SUM command?
I thought of storing it in a string then reading the string into an array which could then be accessed an element at a time. Looking for a more concise way of doing it.
Thanks
David McMillan