All Downloads are FREE. Search and download functionalities are using the official Maven repository.

hep.aida.tdouble.ref.DoubleHistogram Maven / Gradle / Ivy

Go to download

Parallel Colt is a multithreaded version of Colt - a library for high performance scientific computing in Java. It contains efficient algorithms for data analysis, linear algebra, multi-dimensional arrays, Fourier transforms, statistics and histogramming.

The newest version!
package hep.aida.tdouble.ref;

/**
 * Base class for Histogram1D and Histogram2D.
 * 
 * @author Wolfgang Hoschek, Tony Johnson, and others.
 * @version 1.0, 23/03/2000
 */
abstract class DoubleHistogram implements hep.aida.tdouble.DoubleIHistogram {
    /**
     * 
     */
    private static final long serialVersionUID = 1L;
    private String title;

    DoubleHistogram(String title) {
        this.title = title;
    }

    public String title() {
        return title;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy