Stats.ColumnMeans<T> Method
Returns a vector containing the means of the columns of a matrix.
DefinitionPermalink
Namespace: Numerics.NET.Statistics
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.0
C#
A vector containing the means of the columns of values.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.0
public static Vector<T> ColumnMeans<T>(
this Matrix<T> values
)
ParametersPermalink
- values Matrix<T>
- A matrix.
Type ParametersPermalink
- T
Return ValuePermalink
Vector<T>A vector containing the means of the columns of values.
Usage NotePermalink
In Visual Basic and C#, you can call this method as an instance method on any object of type Matrix<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).ExceptionsPermalink
Argument | values is null. |