Sets the scale and shape parameter for this distribution.

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

Syntax

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

Parameters

scale
Type: System..::.Double
The scale parameter. Must be positive.
shape
Type: System..::.Double
The shape parameter. Must be positive.

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.InvalidArgumentExceptionThrown if the input scale or shape parameters are less than or equal to 0.

See Also