Difference between revisions of "Cosine"

From MultiCharts
Jump to navigation Jump to search
(Created page with "Returns the cosine value for an angle of the specified number of degrees. ==== Usage ==== <syntaxhighlight>Cosine(Value)</syntaxhighlight> Where: Value - a numerical ...")
 
m
 
Line 1: Line 1:
 
Returns the cosine value for an angle of the specified number of degrees.   
 
Returns the cosine value for an angle of the specified number of degrees.   
  
==== Usage ====
+
== Usage ==
<syntaxhighlight>Cosine(Value)</syntaxhighlight>  
+
<syntaxhighlight>Cosine(Value);</syntaxhighlight>  
  
Where: [[Value]] - a numerical expression, specifying the number of degrees in the angle  
+
Where:  
 +
 
 +
:'''Value''' - a numerical expression, specifying the number of degrees in the angle.
 
   
 
   
==== Example ====
+
== Example ==
<syntaxhighlight>Cosine(60) will return a value of 0.5</syntaxhighlight>
+
<syntaxhighlight>Cosine(60);</syntaxhighlight>
 +
Will return a value of 0.5.
 
   
 
   
 
[[Category:Math and Trig]]
 
[[Category:Math and Trig]]

Latest revision as of 06:08, 9 February 2012

Returns the cosine value for an angle of the specified number of degrees.

Usage

Cosine(Value);

Where:

Value - a numerical expression, specifying the number of degrees in the angle.

Example

Cosine(60);

Will return a value of 0.5.