Interface MeXScalardSet
-
- All Superinterfaces:
MiDataSet
- All Known Subinterfaces:
MeXScalardSetI,MeXScalardSetIj
public interface MeXScalardSet extends MiDataSet
Extracted scalar set interface.An interface for an extracted scalar set with boundaries (min and max) returned by any extract of a mesh.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description doublegetMax()Gets the maximum value of this scalar set.doublegetMean()Returns the mean value of this scalar set.doublegetMin()Gets the minimum value of this scalar set.doublegetStandardDeviation()Returns the standard deviation value of this scalar set.-
Methods inherited from interface com.openinventor.meshvizxlm.mesh.data.MiDataSet
getBinding, getName, getTimeStamp
-
-
-
-
Method Detail
-
getMin
double getMin() throws MeEmptyDataSetExceptionGets the minimum value of this scalar set.- Returns:
- the minimum value
- Throws:
MeEmptyDataSetException- if extracted data set is empty.
-
getMax
double getMax() throws MeEmptyDataSetExceptionGets the maximum value of this scalar set.- Returns:
- the maximum value
- Throws:
MeEmptyDataSetException- if extracted data set is empty.
-
getMean
double getMean() throws MeEmptyDataSetExceptionReturns the mean value of this scalar set.- Returns:
- the mean value
- Throws:
MeEmptyDataSetException- if extracted data set is empty.
-
getStandardDeviation
double getStandardDeviation() throws MeEmptyDataSetExceptionReturns the standard deviation value of this scalar set.- Returns:
- the standard deviation
- Throws:
MeEmptyDataSetException- if extracted data set is empty.
-
-