Uses of Class
de.gsi.dataset.spi.DoubleErrorDataSet
-
Packages that use DoubleErrorDataSet Package Description de.gsi.dataset.spi de.gsi.dataset.utils -
-
Uses of DoubleErrorDataSet in de.gsi.dataset.spi
Subclasses of DoubleErrorDataSet in de.gsi.dataset.spi Modifier and Type Class Description classDefaultErrorDataSetRedirect to the reference implementation declared as 'default'.Methods in de.gsi.dataset.spi that return DoubleErrorDataSet Modifier and Type Method Description DoubleErrorDataSetDoubleErrorDataSet. add(double[] xValues, double[] yValues, double[] yErrorsNeg, double[] yErrorsPos)Initialises the data set with specified data.DoubleErrorDataSetDoubleErrorDataSet. add(double x, double y)Add point to the DoublePoints object.DoubleErrorDataSetDoubleErrorDataSet. add(double x, double y, double yErrorNeg, double yErrorPos)Add point to the DoublePoints objectDoubleErrorDataSetDoubleErrorDataSet. clearData()clears all dataDoubleErrorDataSetDoubleErrorDataSet. remove(int fromIndex, int toIndex)remove sub-range of data pointsDoubleErrorDataSetDoubleErrorDataSet. set(double[] xValues, double[] yValues, double[] yErrorsNeg, double[] yErrorsPos)Initialises the data set with specified data.DoubleErrorDataSetDoubleErrorDataSet. set(double[] xValues, double[] yValues, double[] yErrorsNeg, double[] yErrorsPos, boolean copy)Initialises the data set with specified data.DoubleErrorDataSetDoubleErrorDataSet. set(int index, double x, double y)replaces point coordinate of existing data pointDoubleErrorDataSetDoubleErrorDataSet. set(int index, double x, double y, double yErrorNeg, double yErrorPos)replaces point coordinate of existing data pointDoubleErrorDataSetDoubleErrorDataSet. set(DataSet other)clear old data and overwrite with data from 'other' data set (deep copy) -
Uses of DoubleErrorDataSet in de.gsi.dataset.utils
Methods in de.gsi.dataset.utils that return DoubleErrorDataSet Modifier and Type Method Description static DoubleErrorDataSetDataSetUtils. readDataSetFromByteArray(byte[] byteArray)Read a Dataset from a byte array containing comma separated values.
The data format is a custom extension of csv with an additional #-commented Metadata Header and a $-commented column header.static DoubleErrorDataSetDataSetUtils. readDataSetFromStream(de.gsi.dataset.utils.DataSetUtils.SplitCharByteInputStream inputStream)Read a Dataset from a stream containing comma separated values.
The data format is a custom extension of csv with an additional #-commented Metadata Header and a $-commented column header.Methods in de.gsi.dataset.utils with parameters of type DoubleErrorDataSet Modifier and Type Method Description protected static voidDataSetUtils. readNumericDataFromFile(java.io.BufferedReader inputFile, DoubleErrorDataSet dataSet)
-