atoti.math package

Module contents

atoti.math.abs(measure)

Return a measure equal to the absolute value of the passed measure.

Return type

Measure

atoti.math.ceil(measure)

Return a measure equal to the smallest integer that is >= to the passed measure.

Return type

Measure

atoti.math.cos(measure)

Return a measure equal to the cosine of the passed measure in radians.

Return type

Measure

atoti.math.erf(measure)

Return the error function of the input measure.

This can be used to compute traditional statistical measures such as the cumulative standard normal distribution.

For more information read:

Return type

Measure

atoti.math.erfc(measure)

Return the complementary error function of the input measure.

This is the complementary of atoti.math.erf(). It is defined as 1.0 - erf. It can be used for large values of x where a subtraction from one would cause a loss of significance.

Return type

Measure

atoti.math.exp(measure)

Return a measure equal to the exponential value of the passed measure.

Return type

Measure

atoti.math.floor(measure)

Return a measure equal to the largest integer <= to the passed measure.

Return type

Measure

atoti.math.log(measure)

Return a measure equal to the natural logarithm (base e) of the passed measure.

Return type

Measure

atoti.math.log10(measure)

Return a measure equal to the base 10 logarithm of the passed measure.

Return type

Measure

atoti.math.max(*measures)

Return a measure equal to the maximum of the passed arguments.

Return type

Measure

atoti.math.min(*measures)

Return a measure equal to the minimum of the passed arguments.

Return type

Measure

atoti.math.round(measure)

Return a measure equal to the closest integer to the passed measure.

Return type

Measure

atoti.math.sin(measure)

Return a measure equal to the sine of the passed measure in radians.

Return type

Measure

atoti.math.sqrt(measure)

Return a measure equal to the square root of the passed measure.

Return type

Measure

atoti.math.tan(measure)

Return a measure equal to the tangent of the passed measure in radians.

Return type

Measure