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 …')
 
(Overview)
Line 3: Line 3:
 
This cos[n] function will find the cosine of the value or variable ''n'' passed to it.
 
This cos[n] function will find the cosine of the value or variable ''n'' 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 ==

Revision as of 22:06, 10 January 2010

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 the cosine

Example

var a:=cos[10];
var y;
y:=cos[a];