[ Back ]
NaaLaa has a basic set of mathematical functions, all presented below.
function min(a, b), function min#(a#, b#)
function max(a, b), function max#(a#, b#)
function abs(a), function abs#(a#)
function sqr#(a#)
function pow#(a#, b#)
function sin#(a#), function cos#(a#), function tan#(a#)
function asin#(a#), function acos#(a#), function atan#(a#)
function atan2#(y#, x#)
procedure degrees, procedure radians
function degrees()
Return the smallest value of a and b.
Return the largest value of a and b.
Return the absolute value of a.
Return the square root of a.
Returns a raised to the power of b.
Return sin, cos or tan of a.
Return asin, acos or atan of a.
Return the angle between the positive x axis of a plane and the point given by the coordinates (x, y) on it.
Switch between degrees (standard) and radians for all trigonometric functions.
Return true if trigonometric functions are using degrees (default).
[ Back ]