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

com.actelion.research.util.datamodel.XYIndex Maven / Gradle / Ivy

There is a newer version: 2024.11.2
Show newest version
package com.actelion.research.util.datamodel;

/**
 * Modest v. Korff
 * Idorsia Pharmaceuticals Ltd.
 * 08.02.2021 Start implementation
 **/
public class XYIndex extends XY {

    int index;

    public XYIndex(double[] x, double[] y) {
        super(x, y);
    }

    public XYIndex(double[] x, double[] y, int index) {
        super(x, y);
        this.index = index;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy