|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.ObjectFilters.SmoothingFilter
public class SmoothingFilter
Smoothing filter which is basically a moving abstract filter but it operates once on a finite amount of data and does not insert any delays (unlike MovingAveragefilter which handles infinite streams, but adds a delay)
| Constructor Summary | |
|---|---|
SmoothingFilter()
|
|
| Method Summary | |
|---|---|
static double[] |
smoothData(double[] data,
int smooth)
Smooth data with a moving average filter. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public SmoothingFilter()
| Method Detail |
|---|
public static double[] smoothData(double[] data,
int smooth)
data - data to smoothsmooth - - bins to smooth over. Should be odd, will be incremented if not.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||