
org.sdmlib.models.modelsets.floatList Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of SDMLib Show documentation
Show all versions of SDMLib Show documentation
SDMLib is a light weight modeling library. SDMLib intentionally comes without any tool or editor.
package org.sdmlib.models.modelsets;
import java.util.ArrayList;
public class floatList extends ArrayList
{
private static final long serialVersionUID = 1L;
public double sum()
{
double result = 0;
for (Float value : this)
{
result += value;
}
return result;
}
public float max()
{
float max = Float.MIN_VALUE;
for (float x : this)
{
if (x > max)
{
max = x;
}
}
return max;
}
public float min()
{
float min = Float.MAX_VALUE;
for (float x : this)
{
if (x < min)
{
min = x;
}
}
return min;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy