Sqrt()

Calculate the square root of a value.

SQRT(x) x=Generic Calculate the square root.

example:

	# Calculate the square root of Pi
	printn Sqrt($PI)
	1.77245310234149

Note: This function can be applied to all numeric types (including arrays & workspaces).

Sqrt()

Calculates the square root of a number.

Parameters:

X (Generic)

A single number, array or workspace containing the values to square root. Undefined values passed to this function will be returned undefined. Illegal values (ie negative numbers are permitted) but will return an undefined result.

RESULT = (Generic)

Either the square root of the value or an undefined result.