NthRoot

Function

NthRoot(value, root)

value
root

Use

The NthRoot() function returns the nth root of a value. I.e. (value)^(1/n). NthRoot(value, 2) would work the same as Sqrt(value).

NthRoot() will work with units, applying the appropriate unit tracking.

Examples
  • NthRoot(16, 4)  = 2
  • NthRoot(125 mm^3, 3)  = 5 mm

 

 


NthRoot is included by default in each file as part of the Math library.

 

See also: