All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jcamp.spectrum.IPeakPicking Maven / Gradle / Ivy

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 - 2024 Weber Informatics LLC | Privacy Policy