create an array
i want to create a num array, but how could i do it? example: if i have a data table,i want to use mean value of the first two columns and maximum of the last six columns to make an array, but i failed. a=mean(:column 1);
b=mean(:column 2);
c=max(:column 3);
d=max(:column 4);
e=max(:column 5);
f=max(:column 6);
g=max(:column 7);
h=max(:column 8);
array1=[a,b,c,d,e,f,g,h];
the jsl file i written ...