Model 4200A-SCS Parameter Analyzer Reference Manual
Section 6: Clarius
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
)
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
)
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
)
V
The name of any column (vector) listed under Columns
STARTPOS
The row number (index) of the existing value that you choose to become the first
value in the new column (vector)
ENDPOS
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)