getargv
Gets the command line argument at the given index, index.
Syntax
R = getargv(index)
Inputs
- index
- Type: Positive integer
Outputs
- R
- Type: integer
Example
Gets the command line argument at index 6 when run with the following command line options:
-v 2019.2:
R = getargv(5)
R = 2019.2