Returns the remainder of x divided by y.
x = fmod(9, 2);
Returns the tangent of an angle of x radians.
x = tan1(0.4);
Returns the principal value of the arc tangent of x, expressed in radians.
x = atan1(0.4);
Returns the arc tangent in radians of y/x based on the signs of both values to determine the correct quadrant.
x = atan2(9, 2);
Returns the cosine of an angle of x radians.
x = cos1(0.4);
Returns the arc cosine of x in radians.
x = acos1(0.4);
Returns the sine of an angle of x radians.
x = sin1(0.4);
Returns the principal value of the arc sine of x, expressed in radians.
x = asin1(0.4);