SQRT inputVector resultVariable

Replaces the contents of the result variable with the square root of each element of the input vector.

The square root of NaN is NaN.

The square root of a negative number is an error.

COPY 1,5 A
SQRT A B
PRINT A B

The above program produced the following result:

A: (1.0 2.0 3.0 4.0 5.0)
B: (1.0 1.4142135623730951 1.7320508075688772 2.0 2.23606797749979)