Difference between revisions of "SquareRoot"

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

Latest revision as of 06:28, 9 February 2012

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

Usage

SquareRoot(Value);

Where:

Value - a numerical expression.

Example

SquareRoot(57.73);

Will return a value of 7.598.