diff --git a/src/modules/math/doc/math_admin.xml b/src/modules/math/doc/math_admin.xml index fe70654d319..03faf998495 100644 --- a/src/modules/math/doc/math_admin.xml +++ b/src/modules/math/doc/math_admin.xml @@ -143,6 +143,28 @@ $var(x) = 100; math_log10("$var(x)", "$var(res)"); ... + + + +
+ + <function moreinfo="none">math_sqrt(x, res)</function> + + + The function computes the square root of x and stores the result + in res. + + + This function can be used from ANY_ROUTE. + + + <function>math_sqrt</function> usage + +... + math_sqrt("16", "$var(res)"); + $var(x) = 16; + math_sqrt("$var(x)", "$var(res)"); +...