Difference between revisions of "Tan"
From Mesham
Jump to navigationJump to search (Created page with '== Overview == This tan[d] function will find the tangent of the value or variable ''d'' passed to it. * '''Pass:''' A double to find the tangent of * '''Returns:''' A double …') |
m (5 revisions imported) |
||
| (4 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
== Overview == | == Overview == | ||
| − | This tan | + | This tan(d) function will find the tangent of the value or variable ''d'' passed to it. |
| − | * '''Pass:''' A | + | * '''Pass:''' A [[Double]] to find the tangent of |
| − | * '''Returns:''' A | + | * '''Returns:''' A [[Double]] representing the tangent |
== Example == | == Example == | ||
| − | var a:=tan(0.05); | + | #include <maths> |
| − | + | ||
| + | function void main() { | ||
| + | var a:=tan(0.05); | ||
| + | var y:=tan(a); | ||
| + | }; | ||
| + | |||
| + | ''Since: Version 0.41b'' | ||
[[Category:Function Library]] | [[Category:Function Library]] | ||
[[Category:Maths Functions]] | [[Category:Maths Functions]] | ||