Difference between revisions of "Cos"

From Mesham
Jump to navigationJump to search
(Created page with '== Overview == This cos[n] function will find the cosine of the value or variable ''n'' passed to it. '''Pass''' A double to find cosine of '''Returns''' A double representing …')
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
== Overview ==
 
== Overview ==
  
This cos[n] function will find the cosine of the value or variable ''n'' passed to it.
+
This cos[d] function will find the cosine of the value or variable ''d'' passed to it.
  
'''Pass''' A double to find cosine of
+
* '''Pass:''' A double to find cosine of
'''Returns''' A double representing the cosine
+
 
 +
* '''Returns:''' A double representing the cosine
  
 
== Example ==
 
== Example ==
  
  var a:=cos[10];
+
  var a:=cos(10.4);
  var y;
+
  var y:=cos(a);
y:=cos[a];
 
  
 
[[Category:Function Library]]
 
[[Category:Function Library]]
 
[[Category:Maths Functions]]
 
[[Category:Maths Functions]]

Revision as of 12:33, 13 January 2013

Overview

This cos[d] function will find the cosine of the value or variable d passed to it.

  • Pass: A double to find cosine of
  • Returns: A double representing the cosine

Example

var a:=cos(10.4);
var y:=cos(a);