Skip to content

Latest commit

 

History

History
65 lines (49 loc) · 866 Bytes

math.md

File metadata and controls

65 lines (49 loc) · 866 Bytes

Math

fmod()

Returns the remainder of x divided by y.

x = fmod(9, 2);

tan1()

Returns the tangent of an angle of x radians.

x = tan1(0.4);

atan1()

Returns the principal value of the arc tangent of x, expressed in radians.

x = atan1(0.4);

atan2()

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);

cos1()

Returns the cosine of an angle of x radians.

x = cos1(0.4);

acos1()

Returns the arc cosine of x in radians.

x = acos1(0.4);

sin1()

Returns the sine of an angle of x radians.

x = sin1(0.4);

asin1()

Returns the principal value of the arc sine of x, expressed in radians.

x = asin1(0.4);