BRL.Math: | Functions | Modinfo | Source |
Function ACos:Double( x:Double ) | |
Description | Inverse Cosine of x. |
Function ASin:Double( x:Double ) | |
Description | Inverse Sine of x. |
Function ATan:Double( x:Double ) | |
Description | Inverse Tangent of x. |
Function ATan2:Double( y:Double,x:Double ) | |
Description | Inverse Tangent of two variables x , y. |
Function Ceil:Double( x:Double ) | |
Description | Smallest integral value not less than x. |
Function Cos:Double( x:Double ) | |
Description | Cosine of x degrees. |
Function Cosh:Double( x:Double ) | |
Description | Hyperbolic cosine of x. |
Function Exp:Double( x:Double ) | |
Description | Exponential function. |
Function Floor:Double( x:Double ) | |
Description | Largest integral value not greater than x. |
Function IsInf( x:Double ) | |
Returns | True if x is infinite. |
Description | Check if a value is infinite (eg: 1.0/0.0) |
Function IsNan( x:Double ) | |
Returns | True if x is 'not a number' (eg: Sqr(-1)) |
Description | Check if a value is NAN. |
Function Log:Double( x:Double ) | |
Description | Natural logarithm. |
Function Log10:Double( x:Double ) | |
Description | Base 10 logarithm. |
Function Sin:Double( x:Double ) | |
Description | Sine of x degrees. |
Function Sinh:Double( x:Double ) | |
Description | Hyperbolic sine of x. |
Function Sqr:Double( x:Double ) | |
Description | Square root of x. |
Function Tan:Double( x:Double ) | |
Description | Tangent of x degrees. |
Function Tanh:Double( x:Double ) | |
Description | Hyperbolic tangent of x. |
Version | 1.05 |
---|---|
Author | Mark Sibly |
License | Blitz Shared Source Code |
Copyright | Blitz Research Ltd |
Modserver | BRL |
History | 1.05 Release |
History | Added IsNan and IsInf |