Sets the mean and standard deviation of the logarithm of self (which is normally distributed) to the specified values.

Namespace:  CenterSpace.NMath.Stats
Assembly:  NMathStats (in NMathStats.dll) Version: 3.4.0.0

Syntax

C#
public void SetParameters(
	double mu,
	double sigma
)
Visual Basic (Declaration)
Public Sub SetParameters ( _
	mu As Double, _
	sigma As Double _
)
Visual C++
public:
void SetParameters(
	double mu, 
	double sigma
)

Parameters

mu
Type: System..::.Double
The mean of the logarithm of self.
sigma
Type: System..::.Double
The standard deviation of the logarithm of self.

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.InvalidArgumentExceptionThrown if sigm is negative.

See Also