hep.aida.tdouble.ref.DoubleHistogram Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of parallelcolt Show documentation
Show all versions of parallelcolt Show documentation
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