Class NormalDistribution
A normal distribution.
Inheritance
System.Object
NormalDistribution
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.Probability
Assembly:numl.dll
Syntax
public class NormalDistribution
Properties
View SourceMu
Gets or sets the mu.
Declaration
public Vector Mu { get; set; }
Property Value
Type | Description |
---|---|
Vector | The mu. |
Sigma
Gets or sets the sigma.
Declaration
public Matrix Sigma { get; set; }
Property Value
Type | Description |
---|---|
Matrix | The sigma. |
Methods
View SourceCompute(Vector)
Computes the given x coordinate.
Declaration
public double Compute(Vector x)
Parameters
Type | Name | Description |
---|---|---|
Vector | x | The Vector to process. |
Returns
Type | Description |
---|---|
System.Double | A double. |
Estimate(Matrix, VectorType)
Estimates.
Declaration
public void Estimate(Matrix X, VectorType type = VectorType.Row)
Parameters
Type | Name | Description |
---|---|---|
Matrix | X | The Matrix to process. |
VectorType | type | (Optional) the type. |