[]
Represents mathematical functions.
public static class MathFunctions
| Name | Description |
|---|---|
| Abs(List<IExpression>) | Returns the absolute value of a number. |
| Acos(List<IExpression>) | Returns the arccosine of a number. |
| Asin(List<IExpression>) | Returns the arcsine of a number. |
| Atan(List<IExpression>) | Returns the arctangent of a number. |
| Atan2(List<IExpression>) | Returns the arctangent from x- and y-coordinates |
| Ceiling(List<IExpression>) | Rounds a number to the nearest integer or to the nearest multiple of significance. |
| Cos(List<IExpression>) | Returns the cosine of a number. |
| Cosh(List<IExpression>) | Returns the hyperbolic cosine of a number. |
| Exp(List<IExpression>) | Returns e raised to the power of a given number. |
| Floor(List<IExpression>) | Rounds a number down, toward zero. |
| Log(List<IExpression>) | Returns the logarithm of a number to a specified base. |
| Log10(List<IExpression>) | Returns the base-10 logarithm of a number. |
| Pow(List<IExpression>) | Returns a specified number raised to the specified power. |
| Rand(List<IExpression>) | Returns a random number between 0 and 1. |
| RandBetween(List<IExpression>) | Returns a random number between the numbers you specify. |
| Round(List<IExpression>) | Rounds a number to a specified number of digits. |
| Sign(List<IExpression>) | Returns the sign of a number. |
| Sin(List<IExpression>) | Returns the sine of the given angle. |
| Sinh(List<IExpression>) | Returns the hyperbolic sine of a number. |
| Sqrt(List<IExpression>) | Returns a positive square root. |
| Tan(List<IExpression>) | Returns the tangent of a number. |
| Tanh(List<IExpression>) | Returns the hyperbolic tangent of a number. |