| A |
- |
Input data array A
|
| Op |
- |
Operation
| ACOS |
- |
Take acos of A returning angle
in radians in array C
|
| ACOSD |
- |
Take acos of A returning angle
in degrees in array C
|
| ATAN |
- |
Take atan of A returning angle
in radians in array C
|
| ATAND |
- |
Take atan of A returning angle
in degrees in array C
|
| AVG |
- |
Find average of A returning
single value through the routine
|
| LOG10 |
- |
Take log base 10 of A and return
in array C.
|
| LOGE |
- |
Take log base e of A and return
in array C.
|
| SUM |
- |
Return the sum of A through the
routine.
|
| SUM |
- |
Return the varience of A through
the routine.
|
| OP |
- |
Produce the operation A OP B and
return the result in C. OP must be a valid mathematical
operation (*, +, %, etc). If B is a constant then it is
applied to all elements in A.
|
|
| B |
- |
Input data array B. (Used only when
two array operations are specified.)
|
| C |
- |
Output data array C. (Used only when
the result of an operation is itself an array.)
|
| nE |
- |
The number elements to process. The
last data array element processed is (nE - 1) * oX + dX where
X is A, B or C as defined below.
|
| oA |
- |
Optional offset into array A.
Default is 0.
|
| oB |
- |
Optional offset into array B.
Default is 0.
|
| oC |
- |
Optional offset into array C.
Default is 0.
|
| dA |
- |
Optional increment value to use when
getting the next value in array A. Default is 1.
|
| dB |
- |
Optional increment value to use when
getting the next value in array B. Default is 1.
|
| dC |
- |
Optional increment value to use when
putting the next value in array C. Default is 1.
|