-SCS Parameter Analyzer Reference Manual Section 6:
4200A-901-01 Rev. C / February 2017 6-245
MAXPOS Formulator function
Searches all values in a column (vector), finds the maximum value, and returns the row number (index) of the maximum value.
Usage
MAXPOS(V)
The name of any column (vector) listed under Columns
Example
PEAKSTRESS = AT(GATEV, MAXPOS(SUBSTRATEI))
Also see
None
MINPOS Formulator function
Searches all values in a column (vector), finds the minimum value, and returns the row number (index) of the minimum value.
Usage
MINPOS(V)
The name of any column (vector) listed under Columns
Example
LOCATION = MINPOS(DRAINI)
Also see
None
SUBARRAY Formulator function
Returns a new column (vector) containing a specified range of the values from an existing column (vector).
Usage
SUBARRAY(V, STARTPOS, ENDPOS)
The name of any column (vector) listed under Columns
The row number (index) of the existing value that you choose to become the first
value in the new column (vector)
The row number (index) of the existing value that you choose to become the last
value in the new column (vector)
Details
If STARTPOS and ENDPOS are invalid numbers, the function returns #REF as the result.
Example 1
SUB1 = SUBARRAY(rESV, 10, 20)