Package adams.data.spc
Interface ViolationFinder
-
- All Superinterfaces:
Destroyable
,OptionHandler
- All Known Implementing Classes:
AbstractViolationFinder
,BeyondLimitsViolations
,NullViolations
,OnOneSideViolations
public interface ViolationFinder extends OptionHandler
Interface for algorithms that check for violations.- Version:
- $Revision$
- Author:
- FracPete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int[]
find(double[] data, Limits[] limits)
Performs the finding.-
Methods inherited from interface adams.core.Destroyable
destroy
-
Methods inherited from interface adams.core.option.OptionHandler
cleanUpOptions, defineOptions, getOptionManager, toCommandLine
-
-
-
-
Method Detail
-
find
int[] find(double[] data, Limits[] limits)
Performs the finding.- Parameters:
data
- the data to checklimits
- the limits for the data- Returns:
- the indices of the violations
-
-