|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.udo.cs.yale.tools.math.BinaryPeakFinder
public class BinaryPeakFinder
Generates the amplitude and index point of the highest peaks in the series. Find peaks by a divide and conquer algorithm. In each series it tries to find the maximum and then find other peaks left and right from it. Makes sure that values of the current peak are excluded.
Nested Class Summary | |
---|---|
private class |
BinaryPeakFinder.Area
An area of the series which still should be investigated. |
Field Summary | |
---|---|
private double |
average
The average of the current series. |
Constructor Summary | |
---|---|
BinaryPeakFinder()
|
Method Summary | |
---|---|
private int |
findMaximum(Peak[] series,
int startIndex,
int endIndex)
Finds the index point of the maximum of the series between startIndex and endIndex. |
private int |
getLeftEndOfPeak(Peak[] series,
int max,
int startIndex)
Traverses the series from max to left until startIndex is reached or while the current value is below average or while the values are still decreasing. |
java.util.List<Peak> |
getPeaks(Peak[] series)
Returns the "actual" peaks from the given peak series (spectrum). |
private int |
getRightEndOfPeak(Peak[] series,
int max,
int endIndex)
Traverses the series from max to right until endIndex is reached or while the current value is below average or while the values are still decreasing. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
private double average
Constructor Detail |
---|
public BinaryPeakFinder()
Method Detail |
---|
public java.util.List<Peak> getPeaks(Peak[] series)
PeakFinder
getPeaks
in interface PeakFinder
private int getLeftEndOfPeak(Peak[] series, int max, int startIndex)
private int getRightEndOfPeak(Peak[] series, int max, int endIndex)
private int findMaximum(Peak[] series, int startIndex, int endIndex)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |