SampleClassAverageValues(IEnumerableDouble, IEnumerableDouble) Method

This is used to get the average of two enumerable list of values

Definition

Namespace: XMLCommentsExamples
Assembly: XMLCommentsExamples (in XMLCommentsExamples.dll) Version: 2014.1.26.0
public double AverageValues(
	IEnumerable<double> firstValues,
	IEnumerable<double> secondValues
)

Parameters

firstValues  IEnumerableDouble
The first set of values to average
secondValues  IEnumerableDouble
The second set of values to average

Return Value

Double
The average of the values from both enumerable lists

See Also