Package jline.api.mam

Class Mmap_sum

java.lang.Object
jline.api.mam.Mmap_sum

public final class Mmap_sum extends Object
  • Method Summary

    Modifier and Type
    Method
    Description
    static MatrixCell
    mmap_sum(MatrixCell mmap, int n)
    Returns the MMAP representing the sum of n identical copies of the given MMAP: its interarrival time is distributed as the sum of n interarrival times of the base process, and the class marking is inherited from the n-th (last) of the n base arrivals.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Method Details

    • mmap_sum

      public static MatrixCell mmap_sum(MatrixCell mmap, int n)
      Returns the MMAP representing the sum of n identical copies of the given MMAP: its interarrival time is distributed as the sum of n interarrival times of the base process, and the class marking is inherited from the n-th (last) of the n base arrivals.

      Mirrors MATLAB mmap_sum(MMAP,n) and native-Python mmap_sum(mmap,n). The MMAP is a MatrixCell laid out as {D0, D1(aggregate), C_1, ..., C_K}.

      Parameters:
      mmap - the base MMAP (K classes, order m)
      n - the number of interarrival times to sum (n >= 1)
      Returns:
      the n-fold summed MMAP (K classes, order n*m)