
org.jcamp.spectrum.IPeakPicking Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jcamp-dx Show documentation
Show all versions of jcamp-dx Show documentation
The JCAMP-DX project is the reference implemention of the IUPAC JCAMP-DX spectroscopy data standard.
package org.jcamp.spectrum;
import java.util.Vector;
/**
* peak picking algorithm interface.
* @author Thomas Weber
*/
public interface IPeakPicking {
/**
* perform the peak picking on the 1D spectrum.
* @param Spectrum1D the spectrum
* @return Vector vector of peaks*/
public Vector calculate(Spectrum1D spectrum);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy