Example usage for org.apache.commons.math3.distribution RealDistribution interface-usage

List of usage examples for org.apache.commons.math3.distribution RealDistribution interface-usage

Introduction

In this page you can find the example usage for org.apache.commons.math3.distribution RealDistribution interface-usage.

Usage

From source file edu.cmu.tetrad.sem.ShiftedRealDistribution.java

/**
 * Represents a real distribution that is shifted along the independent axis.
 * Created by jdramsey on 8/28/15.
 */
public class ShiftedRealDistribution implements RealDistribution {
    private final RealDistribution dist;

From source file edu.cmu.tetrad.sem.EmpiricalCdf.java

/**
 * Only the cumulativeProbability, density, setShift methods are implemented.
 */
public class EmpiricalCdf implements RealDistribution {
    private List<Double> data;
    private Map<Double, Double> map = new HashMap<Double, Double>();