org.jcamp.math.IArray2D 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.
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);
}