MathFcn
| MathFcn is a C code class that returns the results of numerous mathematical functions. The graphic on the left contains hyperlinks to the respective lines in the table. |
Methods | Arguments | Return Value | On activation of method | ||
arg::cont | cont | Returns the absolute value of arg. | |||
arg::cont | cont | Returns the arccos of arg. | |||
arg::cont | cont | Returns the arcsin of arg. | |||
arg::cont | cont | Returns the arctangent of arg. | |||
arg1::cont arg2::cont | cont | Returns the principal value of the arctangent of arg1/arg2, expressed in radians. To compute the value, the function takes into account the sign of both arguments in order to determine the quadrant.
| |||
arg::cont | cont | Returns the smallest integer number not smaller than arg. | |||
arg::cont | cont | Returns the cosine of arg. | |||
arg::cont | cont | Returns the hyperbolic cosine of arg. | |||
arg::cont | cont | Returns the hyperbolic cotangent of arg. | |||
arg::cont | cont | Returns the hyperbolic cosecant of arg. | |||
arg::cont | cont | Returns earg. | |||
arg::cont | cont | Returns the largest integer value not larger than arg. | |||
x::cont y::cont | cont | Returns the floating point remainder of x/y. The return value has the same sign as x. | |||
n::cont m::cont x::cont | cont | Returns m if x <= m; x if m < x < n; n if x => n. | |||
arg::cont | cont | Returns the natural logarithm (logarithm with base e) of arg. | |||
arg::cont | cont | Returns the common logarithm (logarithm with base 10) of arg. | |||
x::cont y::cont | cont | Returns the larger value of x and y. | |||
x::cont y::cont | cont | Returns the smaller value of x and y. | |||
x::cont y::cont | cont | Returns xy. | |||
arg::cont | cont | Returns the hyperbolic secant of arg. | |||
arg::cont | cont | Returns 1.0 if arg > 0.0; 0.0 if arg = 0.0; -1.0 if arg < 0.0. | |||
arg::cont | cont | Returns the sine of arg. | |||
arg::cont | cont | Returns the hyperbolic sine of arg. | |||
arg::cont | cont | Returns the square root of arg. | |||
arg::cont | cont | Returns the tangent of arg. | |||
arg::cont | cont | Returns the hyperbolic tangent of arg. | |||
none | cont | Returns the number p. |
