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

com.bnd.math.domain.Stats Maven / Gradle / Ivy

The newest version!
package com.bnd.math.domain;

public class Stats {

	private Long id;
	private Double pos;
	private Double mean;
	private Double standardDeviation;
	private Double min;
	private Double max;

	public Long getId() {
		return id;
	}

	public void setId(Long id) {
		this.id = id;
	}

	public Double getPos() {
		return pos;
	}

	public void setPos(Double pos) {
		this.pos = pos;
	}

	public Double getMean() {
		return mean;
	}

	public void setMean(Double mean) {
		this.mean = mean;
	}

	public Double getStandardDeviation() {
		return standardDeviation;
	}

	public Double getVariance() {
		return standardDeviation * standardDeviation;
	}

	public void setStandardDeviation(Double standardDeviation) {
		this.standardDeviation = standardDeviation;
	}

	public Double getMin() {
		return min;
	}

	public void setMin(Double min) {
		this.min = min;
	}

	public Double getMax() {
		return max;
	}

	public void setMax(Double max) {
		this.max = max;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy