Namespaces

Types

Type CauchyLorentzDistribution

Namespace MathNet.Numerics.Distributions

Parent ContinuousDistribution

Methods

Properties

Public instance methods

double CumulativeDistribution(double x)

Continuous cumulative distribution function (cdf) of this probability distribution.
Parameters
return double
double x

bool Equals(object obj)

Parameters
return bool
object obj

int GetHashCode()

Parameters
return int

Type GetType()

Parameters
return Type

double NextDouble()

Returns a cauchy distributed floating point random number.
Parameters
return double

double ProbabilityDensity(double x)

Continuous probability density function (pdf) of this probability distribution.
Parameters
return double
double x

void Reset()

void SetDistributionParameters(double location, double scale)

Configure all distribution parameters.
Parameters
double location
double scale

string ToString()

Parameters
return string

Public static methods

bool IsValidParameterSet(double location, double scale)

Determines whether the specified parameters is valid.
Parameters
return bool
double location
double scale

Public properties

bool CanReset get;

return bool

double Location get; set;

Gets or sets the location x0 parameter.
return double

double Maximum get;

Gets the maximum possible value of generated random numbers.
return double

double Mean get;

Gets the mean value of generated random numbers. Throws NotSupportedException since the value is not defined for this distribution.
return double

double Median get;

Gets the median of generated random numbers.
return double

double Minimum get;

Gets the minimum possible value of generated random numbers.
return double

RandomSource RandomSource get; set;

return RandomSource

double Scale get; set;

Gets or sets the scale gamma parameter.
return double

double Skewness get;

Gets the skewness of generated random numbers. Throws NotSupportedException since the value is not defined for this distribution.
return double

double Variance get;

Gets the variance of generated random numbers. Throws NotSupportedException since the value is not defined for this distribution.
return double