qaekwy.model.function
This module provides various mathematical functions that can be applied to expressions or arrays of expressions.
Functions
- maximum(expr): Returns an expression representing the maximum value of an expression array.
- minimum(expr): Returns an expression representing the minimum value of an expression array.
- sum_of(expr): Returns an expression representing the sum of an expression array.
- absolute(expr): Returns an expression representing the absolute value of an expression.
- power(expr, val): Returns an expression representing the exponentiation of an expression by a value.
- nroot(expr, val): Returns an expression representing the nth root of an expression by a value.
- sqr(expr): Returns an expression representing the square of an expression.
- sqrt(expr): Returns an expression representing the square root of an expression.
- sin(expr): Returns an expression representing the sine of an expression.
- cos(expr): Returns an expression representing the cosine of an expression.
- tan(expr): Returns an expression representing the tangent of an expression.
- asin(expr): Returns an expression representing the arcsine of an expression.
- acos(expr): Returns an expression representing the arccosine of an expression.
- atan(expr): Returns an expression representing the arctangent of an expression.
- log(expr): Returns an expression representing the natural logarithm of an expression.
- exp(expr): Returns an expression representing the exponential of an expression.