Stats.Trimmed Mean Method
Definition
Namespace: Numerics.NET.Statistics
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Overload List
Trimmed | Returns the trimmed mean of the elements of an array. |
Trimmed | Returns the trimmed mean of the elements of a vector. |
Trimmed | Returns the trimmed mean of the elements of a numerical variable. |
Trimmed | Returns the trimmed mean of the elements of a numerical variable. |
TrimmedMean(Double[], Double)
Returns the trimmed mean of the elements of an array.
public static double TrimmedMean(
this double[] values,
double percent
)
Parameters
- values Double[]
- A Double array.
- percent Double
- The percentage of extreme values to trim before evaluating the mean.
Return Value
DoubleThe mean of the elements of values with the percent % of extreme values removed.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type Double[]. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).Exceptions
Argument | values is null. |
TrimmedMean<T>(T[], Double)
Returns the trimmed mean of the elements of a numerical variable.
public static double TrimmedMean<T>(
this T[] values,
double percent
)
Parameters
- values T[]
- A Vector<T>.
- percent Double
- The percentage of extreme values to trim before evaluating the mean.
Type Parameters
- T
Return Value
DoubleThe mean of the elements of values with the percent % of extreme values removed.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type T[]. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).Exceptions
Argument | values is null. |
TrimmedMean(Vector<Double>, Double)
Returns the trimmed mean of the elements of a vector.
public static double TrimmedMean(
this Vector<double> values,
double percent
)
Parameters
- values Vector<Double>
- A vector.
- percent Double
- The percentage of extreme values to trim before evaluating the mean.
Return Value
DoubleThe mean of the elements of values with the percent % of extreme values removed.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type Vector<Double>. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).Exceptions
Argument | values is null. |
TrimmedMean<T>(Vector<T>, Double)
Returns the trimmed mean of the elements of a numerical variable.
public static double TrimmedMean<T>(
this Vector<T> values,
double percent
)
Parameters
- values Vector<T>
- A Vector<T>.
- percent Double
- The percentage of extreme values to trim before evaluating the mean.
Type Parameters
- T
Return Value
DoubleThe mean of the elements of values with the percent % of extreme values removed.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type Vector<T>. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).Exceptions
Argument | values is null. |