Returns the root of a number.
// Square root of 25
ResRoot = Root(25)
// Returns 5
Syntax
<Result> = Root(<Number> , <Root Factor>)
<Result>: Real
Root of the number.
<Number>: Integer or real
Number to use.
<Root Factor>: Integer or real
Factor of the root (2 for a square root, 3 for a cubic root, ...).
If this parameter is not specified, the square root of <Number> is returned.