Difference between revisions of "Square"

From MultiCharts
Jump to navigation Jump to search
(Created page with "Returns the square of the value of the specified numerical expression. ==== Usage ==== <syntaxhighlight>Square(Value)</syntaxhighlight> Where: Value - a numerical exp...")
 
m
 
Line 1: Line 1:
 
Returns the square of the value of the specified numerical expression.   
 
Returns the square of the value of the specified numerical expression.   
  
==== Usage ====
+
== Usage ==
<syntaxhighlight>Square(Value)</syntaxhighlight>  
+
<syntaxhighlight>Square(Value);</syntaxhighlight>  
  
Where: [[Value]] - a numerical expression  
+
Where:  
 +
 
 +
:'''Value''' - a numerical expression.
 
   
 
   
==== Example ====
+
== Example ==
<syntaxhighlight>Square(2.5) will return a value of 6.25</syntaxhighlight>
+
<syntaxhighlight>Square(2.5);</syntaxhighlight>
 +
Will return a value of 6.25.
 
   
 
   
 
[[Category:Math and Trig]]
 
[[Category:Math and Trig]]

Latest revision as of 06:29, 9 February 2012

Returns the square of the value of the specified numerical expression.

Usage

Square(Value);

Where:

Value - a numerical expression.

Example

Square(2.5);

Will return a value of 6.25.