hexagon logo

sorting results

Hello,
I have 23 different width measurements and I would like to see them in report from minimum to maximum. How could I do that?

Thanks in advance


Attached Files
Parents
  • pseudocode, but it covers the premise:
    assign\v1=sortup(array(f15.meas,f16.meas,f17.meas, etc))

    will get you an array from smallest to largest values.
    sortdown will give you largest to smallest.

    then you can output dimension v1[1] for biggest/smallest, all the way through to v1[23] for opposing result.

    note: this will only sort the resultant values... It will not associate the sort with the location of the values, or their respective features.
Reply
  • pseudocode, but it covers the premise:
    assign\v1=sortup(array(f15.meas,f16.meas,f17.meas, etc))

    will get you an array from smallest to largest values.
    sortdown will give you largest to smallest.

    then you can output dimension v1[1] for biggest/smallest, all the way through to v1[23] for opposing result.

    note: this will only sort the resultant values... It will not associate the sort with the location of the values, or their respective features.
Children
No Data