click below
click below
Normal Size Small Size show me how
E2 Intermediate
Expression 2 functions that are complicated to a small extent
| Function/Usage | Action |
|---|---|
| array() | Creates an empty array |
| R:clone() | Creates an independent copy of array R |
| R:count() | Returns the number of elements in array R |
| R:sum() | Adds all the numbers in array R together and returns the result |
| R:concat() | Combines all the strings in array R and returns the result |
| R:average() | Averages all the numbers in array R and returns the result |
| R:min() | Returns the smallest number in array R |
| R:minIndex() | Returns the index of the smallest number in array R |
| R:max() | Returns the largest number in array R |
| R:maxIndex() | Returns the index of the largest number in array R |
| R:number(N) | Returns the number associated with index N, returns 0 if no number is found |
| R:vector2(N) | Returns the 2D vector associated with index N, returns 0 if no 2D vector is found |
| R:vector(N) | Returns the 3D vector associated with index N, returns 0 if no |