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

org.jcamp.math.IArray2D Maven / Gradle / Ivy

Go to download

The JCAMP-DX project is the reference implemention of the IUPAC JCAMP-DX spectroscopy data standard.

The newest version!
package org.jcamp.math;

import javax.vecmath.Point2d;

/**
 * real interval with discrete data points.
 * 
 * @author Thomas Weber
 */
public interface IArray2D
  extends IInterval2D {
  
  /**
   * gets array of first dimension
   * @return IArray1D
   */
  public IArray1D getXArray();
  
  /**
   * gets array of second dimension
   * @return IArray1D
   */
  public IArray1D getYArray();
  

  /**
   * number of data points in interval.
   * @return int
   */
  public int getLength();
  

  /**
   * discrete data point at position index in interval.
   * @param index int
   */
  public Point2d pointAt(int index);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy