org.openscience.nmrshiftdb.util
Class PeakPicker
java.lang.Object
org.openscience.nmrshiftdb.util.PeakPicker
public class PeakPicker
- extends java.lang.Object
- Author:
- Tobias Helmus
Constructor Summary |
PeakPicker(org.xmlcml.cml.element.CMLSpectrumData dataList)
|
Method Summary |
double |
absSumAllElements(double[] array)
sum of all absolute element values. |
double[] |
applyFilter(double[] filter,
double[] yvals)
apply filter. |
static double[] |
getFilter(int halfWidth,
java.lang.String function)
creates a filter based on Gaussian and derivatives. |
org.xmlcml.cml.element.CMLPeakList |
getPeakArray()
|
org.xmlcml.cml.element.CMLPeakList |
makeBars(double[] arr,
int windo)
|
double[] |
multiplyBy(double f,
double[] peakTemp)
array multiplication by a scalar. |
(package private) double[] |
trimSpectrumBelow(double[] arr,
double limit)
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
lowerPeakLimit
double lowerPeakLimit
xValArray
private double[] xValArray
yValArray
private double[] yValArray
xAxisLabel
private java.lang.String xAxisLabel
yAxisLabel
private java.lang.String yAxisLabel
GAUSSIAN
public static final java.lang.String GAUSSIAN
- See Also:
- Constant Field Values
GAUSSIAN_FIRST_DERIVATIVE
public static final java.lang.String GAUSSIAN_FIRST_DERIVATIVE
- See Also:
- Constant Field Values
GAUSSIAN_SECOND_DERIVATIVE
public static final java.lang.String GAUSSIAN_SECOND_DERIVATIVE
- See Also:
- Constant Field Values
PeakPicker
public PeakPicker(org.xmlcml.cml.element.CMLSpectrumData dataList)
getPeakArray
public org.xmlcml.cml.element.CMLPeakList getPeakArray()
applyFilter
public double[] applyFilter(double[] filter,
double[] yvals)
- apply filter. convolute array with another array. This is 1-D image
processing. If filter has <= 1 element, return this
unchanged. filter should have an odd number of elements. The
filter can be created with a IntArray constructor filter is moved along
stepwise
- Parameters:
filter
- to apply normally smaller than thisyvals
-
- Returns:
- filtered array
getFilter
public static double[] getFilter(int halfWidth,
java.lang.String function)
- creates a filter based on Gaussian and derivatives. Scaled so that
approximately 2.5 sigma is included (that is value at edge is ca 0.01 of
centre
- Parameters:
halfWidth
- function
-
makeBars
public org.xmlcml.cml.element.CMLPeakList makeBars(double[] arr,
int windo)
absSumAllElements
public double absSumAllElements(double[] array)
- sum of all absolute element values.
- Parameters:
filter
-
- Returns:
- sigma(abs(this(i)))
trimSpectrumBelow
double[] trimSpectrumBelow(double[] arr,
double limit)
multiplyBy
public double[] multiplyBy(double f,
double[] peakTemp)
- array multiplication by a scalar. creates new array; does NOT modify
'this'
- Parameters:
f
- multiplierpeakTemp
-
- Returns:
- the new array