Uses of Class
jline.lang.processes.RAP

Packages that use RAP
Package
Description
This package contains processes and statistical distributions used to specify arrival rates, service rates, and item popularities
  • Uses of RAP in jline.lang.processes

    Methods in jline.lang.processes that return RAP
    Modifier and Type
    Method
    Description
    static RAP
    RAP.fitMeanAndSCV(double mean, double scv)
    Creates a RAP by fitting the given mean and squared coefficient of variation (SCV).
    static RAP
    RAP.fitMoments(double[] moments)
    Creates a RAP by fitting the given moments.
    static RAP
    RAP.fitMomentsAndCorrelations(double[] moments, double[] correlations)
    Creates a RAP by fitting the given moments and correlations.
    static RAP
    RAP.fromErlang(int k, double rate)
    Creates a RAP from an Erlang renewal process.
    static RAP
    RAP.fromHyperExp(double p, double lambda1, double lambda2)
    Creates a RAP from a Hyper-exponential distribution.
    static RAP
    RAP.fromMAP(MAP map)
    Creates a RAP from a Markovian Arrival Process (MAP).
    static RAP
    RAP.fromPoisson(double rate)
    Creates a RAP from an exponential renewal process (Poisson process).