Appendix A
EXPNDI_ID_BY_Z_COUNTS(counts,max profile len)
Creates 2D variable, ID number by profile-length on an XZ grid. Counts may be the ROWSIZE variable in a Discrete Geometries dataset. This function synthesizes an ID variable, which is the profile or 'feature' index value.
|
Arguments: |
COUNTS |
The count of values in each profile or other feature type |
|
Maxlen |
K size of the result: maximum profile length | |
|
Result Axes: |
X |
Abstract: Length is the number of profiles |
|
Y |
inherited from arg 1 |
|
|
Z |
Abstract: length given by argument 3 |
|
|
T |
inherited from arg 1 |
|
|
E |
inherited from arg 1 |
|
|
F |
inherited from arg 1 |
yes? let rowsize = {3,4,2}
yes? list EXPNDI_ID_BY_Z_COUNTS( rowsize, `rowsize[i=@max]`)
!-> list EXPNDI_ID_BY_Z_COUNTS( rowsize, 4)
VARIABLE : EXPNDI_ID_BY_Z_COUNTS( ROWSIZE, 4)
SUBSET : 3 by 4 points (X-Z)
1 2 3
1 2 3
1 / 1: 1.000 2.000 3.000
2 / 2: 1.000 2.000 3.000
3 / 3: 1.000 2.000 ....
4 / 4: .... 2.000 ....


