ABSS function

Syntax

ABSS (dynamic.array)

Description

Use the ABSS function to return the absolute values of all the elements in a dynamic array. If an element in dynamic.array is the null value, null is returned for that element.

Example

Y = REUSE(300)
Z = 500:@VM:400:@VM:300:@SM:200:@SM:100
A = SUBS(Z,Y)
PRINT A
PRINT ABSS(A)

This is the program output:

200V100V0S-100S-200
200V100V0S100S200