Class Summary
Summary class.
Inheritance
System.Object
Summary
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace:numl.Math
Assembly:numl.dll
Syntax
public class Summary
Properties
View SourceAverage
Vector of all columns and the average values for each.
Declaration
public Vector Average { get; set; }
Property Value
Type | Description |
---|---|
Vector |
Maximum
Vector of all columns and the max values for each.
Declaration
public Vector Maximum { get; set; }
Property Value
Type | Description |
---|---|
Vector |
Median
Vector of all columns and the median values for each.
Declaration
public Vector Median { get; set; }
Property Value
Type | Description |
---|---|
Vector |
Minimum
Vector of all columns and the min values for each.
Declaration
public Vector Minimum { get; set; }
Property Value
Type | Description |
---|---|
Vector |
StandardDeviation
Vector of all columns and the standard deviation for each.
Declaration
public Vector StandardDeviation { get; set; }
Property Value
Type | Description |
---|---|
Vector |
Methods
View SourceSummarize(Matrix, VectorType)
Summarizes a given Matrix.
Declaration
public static Summary Summarize(Matrix matrix, VectorType byVector = VectorType.Row)
Parameters
Type | Name | Description |
---|---|---|
Matrix | matrix | Matrix to summarize. |
VectorType | byVector | Indicates which direction to summarize, default is Row indicating top-down. |
Returns
Type | Description |
---|---|
Summary |