Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

For an overview, please see Vectors.


vector ( vector
op vector )

...

> Larger Than

< Smaller Than

>= Larger or Equal

<= Smaller or Equal

= Equal

<> Not Equal

 

In all of the above operations, a missing value in one of the input vectors results in a corresponding missing value in the output vector.

...

Returns the vector of the sine of the input vector at each element. Input vector must have values in radians. Missing values are retained, unaltered by the calculation.

 

vector sort( vector )
vector sort( vector,string )

Returns a sorted version of the given vector. If no second argument is given, the result will be sorted in ascending order; otherwise, a second argument consisting of a string can be given: '<' for ascending, '>' for descending order.

 

vector sqrt( vector )

Returns the vector of the square root of the input vector at each element. Missing values are retained, unaltered by the calculation.

...