On top of the functions listed below, measures can also be combined with mathematical operators.Documentation Index
Fetch the complete documentation index at: https://docs.activeviam.com/llms.txt
Use this file to discover all available pages before exploring further.
- The classic
+,-and*operators: - The float division
/and integer division//: - The exponentiation
**: - The modulo
%:
abs | Return a measure equal to the absolute value of the passed measure. |
|---|---|
ceil | Return a measure equal to the smallest integer that is >= to the passed measure. |
cos | Return a measure equal to the cosine of the passed measure in radians. |
erf | Return the error function of the input measure. |
erfc | Return the complementary error function of the input measure. |
exp | Return a measure equal to the exponential value of the passed measure. |
floor | Return a measure equal to the largest integer <= to the passed measure. |
isnan | Return a measure equal to True when the passed measure is NaN and to False otherwise. |
log | Return a measure equal to the natural logarithm (base e) of the passed measure. |
log10 | Return a measure equal to the base 10 logarithm of the passed measure. |
max | Return a measure equal to the maximum of the passed arguments. |
min | Return a measure equal to the minimum of the passed arguments. |
round | Return a measure equal to the closest integer to the passed measure. |
sin | Return a measure equal to the sine of the passed measure in radians. |
sqrt | Return a measure equal to the square root of the passed measure. |
tan | Return a measure equal to the tangent of the passed measure in radians. |