public class MultiDataSet
extends java.lang.Object
Constructor and Description |
---|
MultiDataSet(DataSet[] dataSets)
Class constructor
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getLabel() |
java.lang.String |
getLabelx() |
java.lang.String |
getLabely() |
double |
getMaxParam() |
double |
getMinParam() |
double |
interpolateByX(double x,
double par)
Interpolates between two curves at a specified value.
|
double |
interpolateByY(double y,
double par) |
boolean |
isExtrapolated() |
void |
print()
Prints the entire data set to standard out
|
void |
setExtrapolation(boolean flag) |
void |
setLabel(java.lang.String label) |
void |
setLabelx(java.lang.String labelx) |
void |
setLabely(java.lang.String labely) |
public DataSet[] dataSets
public MultiDataSet(DataSet[] dataSets)
dataSets
- array of simple data sets (curves)public void setExtrapolation(boolean flag)
public boolean isExtrapolated()
public double interpolateByX(double x, double par)
x
- the abscissa value at which you want to interpolatepar
- the curve on which you want interpolate onpublic double interpolateByY(double y, double par)
public void print()
public void setLabelx(java.lang.String labelx)
public void setLabely(java.lang.String labely)
public java.lang.String getLabel()
public void setLabel(java.lang.String label)
public java.lang.String getLabelx()
public java.lang.String getLabely()
public double getMinParam()
public double getMaxParam()