MathPHP\Probability\Distribution\Continuous\Exponential::mean PHP Method

mean() public static method

μ = λ⁻¹
public static mean ( float ) : number
float often called the rate parameter
return number
    public static function mean(float $λ)
    {
        Support::checkLimits(self::LIMITS, ['λ' => $λ]);
        return 1 / $λ;
    }