Difference between revisions of "AvgList"

From MultiCharts
Jump to navigation Jump to search
(Created page with "Returns the average value of the specified numerical expressions. ==== Usage ==== <syntaxhighlight>AvgList(Value1,Value2,Value3, etc.)</syntaxhighlight> Where: [[Value1, ...")
 
m
 
Line 1: Line 1:
 
Returns the average value of the specified numerical expressions.   
 
Returns the average value of the specified numerical expressions.   
  
==== Usage ====
+
== Usage ==
<syntaxhighlight>AvgList(Value1,Value2,Value3, etc.)</syntaxhighlight>  
+
<syntaxhighlight>AvgList(Value1, Value2, Value3, etc.)</syntaxhighlight>  
  
Where: [[Value1, Value2, Value3, etc.]] - numerical expressions  
+
Where:
 +
 
 +
:'''Value1''', '''Value2''', '''Value3''', etc. - numerical expressions.
 
   
 
   
==== Example ====
+
== Examples ==
<syntaxhighlight>AvgList(45,40,0,35) will return a value of 30
+
<syntaxhighlight>AvgList(45, 40, 0, 35);</syntaxhighlight>
 +
Will return a value of 30.
  
AvgList(-40,20) will return a value of -10</syntaxhighlight>
+
<syntaxhighlight>AvgList(-40, 20);</syntaxhighlight>
 +
Will return a value of -10.
 
   
 
   
 
 
[[Category:Math and Trig]]
 
[[Category:Math and Trig]]

Latest revision as of 06:00, 9 February 2012

Returns the average value of the specified numerical expressions.

Usage

AvgList(Value1, Value2, Value3, etc.)

Where:

Value1, Value2, Value3, etc. - numerical expressions.

Examples

AvgList(45, 40, 0, 35);

Will return a value of 30.

AvgList(-40, 20);

Will return a value of -10.