Package jline.api.fj
Class FJ_order_stat
java.lang.Object
jline.api.fj.FJ_order_stat
-
Method Summary
Modifier and TypeMethodDescriptionstatic doublefj_gk_bound(int K) static doublefj_gk_bound(int K, String type) Compute G(K) factors for expected maximum approximation.static GKBoundResultfj_gk_bound_all(int K) Compute all G(K) bound factors.static doublefj_order_stat_cdf(double FXy, int k, int K) CDF of k-th order statistic of K i.i.d.static doublefj_order_stat_expected_max(int K, DoubleUnaryOperator cdfFunc, double upperLimit) Expected value of the maximum of K i.i.d.static doublefj_order_stat_expected_min(int K, DoubleUnaryOperator cdfFunc, double upperLimit) Expected value of the minimum of K i.i.d.
-
Method Details
-
fj_gk_bound
Compute G(K) factors for expected maximum approximation. -
fj_gk_bound
public static double fj_gk_bound(int K) -
fj_gk_bound_all
Compute all G(K) bound factors. -
fj_order_stat_cdf
public static double fj_order_stat_cdf(double FXy, int k, int K) CDF of k-th order statistic of K i.i.d. random variables. -
fj_order_stat_expected_max
public static double fj_order_stat_expected_max(int K, DoubleUnaryOperator cdfFunc, double upperLimit) Expected value of the maximum of K i.i.d. random variables via numerical integration. -
fj_order_stat_expected_min
public static double fj_order_stat_expected_min(int K, DoubleUnaryOperator cdfFunc, double upperLimit) Expected value of the minimum of K i.i.d. random variables via numerical integration.
-