Trigonometric functions: Difference between revisions

Content added Content deleted
(→‎{{header|bc}}: {{libheader|bc -l}})
Line 897: Line 897:
=={{header|Lua}}==
=={{header|Lua}}==
<lang lua>print(math.cos(1), math.sin(1), math.tan(1), math.atan(1), math.atan2(3, 4))</lang>
<lang lua>print(math.cos(1), math.sin(1), math.tan(1), math.atan(1), math.atan2(3, 4))</lang>


=={{header|Mathematica}}==
<lang Mathematica>Sin[1]
Cos[1]
Tan[1]
ArcSin[1]
ArcCos[1]
ArcTan[1]
Sin[90 Degree]
Cos[90 Degree]
Tan[90 Degree]
</lang>


=={{header|MATLAB}}==
=={{header|MATLAB}}==