Hi All, hope you had a nice thanksgiving.<br><br>If I have a 10x10 array of arrays like:<br><br>[40 8 79 8 73 71 77 35 12 67]<br>[4 79 10 90 45 17 30 29 65 86]<br>[56 86 5 34 23 79 17 83 24 85]<br>[58 85 46 53 15 31 34 4 14 15]<br>
[68 15 97 21 81 95 71 82 26 90]<br>[59 70 11 82 39 25 36 84 88 13]<br>[66 6 85 1 84 17 27 58 60 94]<br>[34 10 38 90 32 0 56 14 23 70]<br>[71 23 5 97 4 71 27 20 11 87]<br>[5 8 23 30 97 16 10 93 16 67]<br><br>Is there any notation I can use to get &quot;column 1&quot;, i.e. $a[0][0], $a[1][0], $a[2][0]... without looping over the whole structure<br>
<br>I need to find the max value in each column<br><br>I know how to do it in a loop, but I thought maybe there was some neato way in a slice.<br><br>Thanks<br>Jay<br>