File: Math.em

Description: Mathematic functions for your enjoyment
Last Modified: 6/18/2006

ACos(x)
Parameters:
NameType
xReal, in radians
Explanation
Computes the arccosine of x
Return values
Real number in radians
Errors
"Invalid parameter type"



ASin(x)
Parameters:
NameType
xReal, in radians
Explanation
Computes the arcsine of x
Return values
Real number in radians
Errors
"Invalid parameter type"



ATan(x)
Parameters:
NameType
xReal, in radians
Explanation
Computes the arctangent of x
Return values
Real number in radians
Errors
"Invalid parameter type"



Abs(x)
Parameters:
NameType
xReal or Integer
Explanation
Computes the absolute value of x
Return values
Real number
Errors
"Invalid parameter type"



Ceil(x)
Parameters:
NameType
xReal
Explanation
Computes the ceiling of x
Return values
Real that is smallest integer >= x
Errors
"Invalid parameter type"



ConstE()
Explanation
Returns an approximation of the trancendental number E
e, is an irrational NUMBER occurring widely in mathematics and science, approximately equal to the value 2.71828; it is the base of natural, or Naperian, LOGARITHMS. Like pi, e is transcendental, i.e., not a ROOT of any algebraic equation. It is defined as the LIMIT of the expression (1 + 1/n)^n as n becomes infinitely large. Expressions of the form e^(x), known as the exponential function, occur in applications ranging from statistics to nuclear physics
Return values
Real number



ConstPi()
Explanation
Returns an approximation of the trancendental number Pi
Pi is a numerical constant that represents the ratio of a circle's circumference to its diameter on a flat plane surface. The value is the same regardless of the size of the circle. The decimal expansion of pi is a nonterminating, nonrepeating sequence of digits. Pi can be expressed through the Fourier series pi = 4 - (4/3) + (4/5) - (4/7) + (4/9) - ...
Return values
Real number (3.14159....)



Cos(x)
Parameters:
NameType
xReal, in radians
Explanation
Computes the cosine of x
Return values
Real number
Errors
"Invalid parameter type"



DegToRad( degrees )
Parameters:
NameType
degreesReal, in degrees
Explanation
Converts the degrees parameter to radians
Return values
Real number in radians
Errors
"Invalid parameter type"



Floor(x)
Parameters:
NameType
xReal
Explanation
Computes the floor of x
Return values
RReal that is largest integer <= x
Errors
"Invalid parameter type"



FormatRealToString( value, precision )
Parameters:
NameType
valueReal
precisionInteger
Explanation
Who knows if this even works at all
Return values
String rep of the real number
Errors
"Invalid parameter type"



Log10(x)
Parameters:
NameType
xReal
Explanation
Computes log(base 10) of x
Return values
Real number
Errors
"Invalid parameter type"



LogE(x)
Parameters:
NameType
xReal
Explanation
Computes the natural log of x
Return values
Real number
Errors
"Invalid parameter type"



Pow(x,y)
Parameters:
NameType
xReal
yReal
Explanation
Computes x ^ y
Return values
Real number
Errors
"Invalid parameter type"



RadToDeg( radians )
Parameters:
NameType
radiansReal, in radians
Explanation
Converts the radian parameter to degrees
Return values
Real number in degrees
Errors
"Invalid parameter type"



Root(x,y)
Parameters:
NameType
xReal
yReal
Explanation
Computes the y root of x (same as Pow(x,1.0/y)).
Return values
Real number
Errors
"Invalid parameter type"



Sin(x)
Parameters:
NameType
xReal, in radians
Explanation
Computes the sine of x
Return values
Real number
Errors
"Invalid parameter type"



Sqrt(x)
Parameters:
NameType
xReal
Explanation
Computes the square root of x
Return values
Real number
Errors
"Invalid parameter type"



Tan(x)
Parameters:
NameType
xReal, in radians
Explanation
Computes the tangent of x
Return values
Real number
Errors
"Invalid parameter type"




If you know if any information is incorrect on these pages, mail your corrections to shinigami@gmx.net

Copyright ©2003-2011 David Carpman and Shinigami, all rights reserved. DO NOT REPRODUCE, MIRROR, ALTER, SPINDLE, MUTILATE, OR SIT ON.