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 double
getMax()
Gets the maximum value of this scalar set.double
getMean()
Returns the mean value of this scalar set.double
getMin()
Gets the minimum value of this scalar set.double
getStandardDeviation()
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 MeEmptyDataSetException
Gets the minimum value of this scalar set.- Returns:
- the minimum value
- Throws:
MeEmptyDataSetException
- if extracted data set is empty.
-
getMax
double getMax() throws MeEmptyDataSetException
Gets the maximum value of this scalar set.- Returns:
- the maximum value
- Throws:
MeEmptyDataSetException
- if extracted data set is empty.
-
getMean
double getMean() throws MeEmptyDataSetException
Returns the mean value of this scalar set.- Returns:
- the mean value
- Throws:
MeEmptyDataSetException
- if extracted data set is empty.
-
getStandardDeviation
double getStandardDeviation() throws MeEmptyDataSetException
Returns the standard deviation value of this scalar set.- Returns:
- the standard deviation
- Throws:
MeEmptyDataSetException
- if extracted data set is empty.
-
-