Package jline.api.mam
Class Mmap_sumKt
-
- All Implemented Interfaces:
public final class Mmap_sumKt
-
-
Method Summary
Modifier and Type Method Description final static MatrixCell
mmap_sum(MatrixCell mmap1, MatrixCell mmap2)
Computes the sum of two MMAPs, creating a superposition process. final static MatrixCell
mmap_sum_multiple(List<MatrixCell> mmaps)
Computes the sum of multiple MMAPs. final static MatrixCell
mmap_sum_weighted(List<MatrixCell> mmaps, DoubleArray weights)
Weighted sum of MMAPs with scaling factors. final static MatrixCell
mmap_sum_selective(List<MatrixCell> mmaps, List<IntArray> classSelections)
Selective sum - only sum specific classes from each MMAP. -
-
Method Detail
-
mmap_sum
final static MatrixCell mmap_sum(MatrixCell mmap1, MatrixCell mmap2)
Computes the sum of two MMAPs, creating a superposition process. This creates an independent superposition where arrivals from both processes can occur simultaneously.
- Parameters:
mmap1
- First MMAPmmap2
- Second MMAP- Returns:
Superposed MMAP
-
mmap_sum_multiple
final static MatrixCell mmap_sum_multiple(List<MatrixCell> mmaps)
Computes the sum of multiple MMAPs.
- Parameters:
mmaps
- List of MMAPs to sum- Returns:
Superposed MMAP
-
mmap_sum_weighted
final static MatrixCell mmap_sum_weighted(List<MatrixCell> mmaps, DoubleArray weights)
Weighted sum of MMAPs with scaling factors.
- Parameters:
mmaps
- List of MMAPs to sumweights
- Scaling factors for each MMAP- Returns:
Weighted superposed MMAP
-
mmap_sum_selective
final static MatrixCell mmap_sum_selective(List<MatrixCell> mmaps, List<IntArray> classSelections)
Selective sum - only sum specific classes from each MMAP.
- Parameters:
mmaps
- List of MMAPsclassSelections
- List of class indices to include from each MMAP- Returns:
Selective sum MMAP
-
-
-
-