Uses of Interface
org.das2.dataset.TableDataSet

Packages that use TableDataSet
org.das2.dataset Provides classes and interfaces for combining Datums into structured DataSets, and operators for working with DataSets. 
org.das2.dataset.test Classes for creating test data sets. 
org.das2.math Provides implementations of complex mathematical functions, such as FFT, Poisson distribution generator, contouring, interpolation, fitting, etc. 
org.das2.math.fft Classes for performing generalized FFT transformations. 
org.das2.stream Provides classes for parsing and formatting das2Streams, and a few stream proof-of-concept stream operators that are not used. 
 

Uses of TableDataSet in org.das2.dataset
 

Classes in org.das2.dataset that implement TableDataSet
 class AbstractTableDataSet
           
 class AppendTableDataSet
           
 class ClippedTableDataSet
           
 class DefaultTableDataSet
           
 class NearestNeighborTableDataSet
           
 class SimpleTableDataSet
          optimized TableDataSet where only 1-table data set is supported, and is backed by a 1-D array.
 class TableDataSetWrapper
           
 class TagMapTableDataSet
           
 class WeightsTableDataSet
          WeightsTableDataSet wraps a TableDataSet and returns 0.0 if the data point is not valid, and non-zero (generally one) otherwise.
 class WritableTableDataSet
           
 

Fields in org.das2.dataset declared as TableDataSet
protected  TableDataSet TableDataSetWrapper.source
           
 

Methods in org.das2.dataset that return TableDataSet
static TableDataSet WeightsTableDataSet.create(TableDataSet source)
           
static TableDataSet TableDataSetGridder.gridLog(TableDataSet tds, Datum xerror, Datum yerror)
          returns a TableDataSet where all the tables are gridded.
 TableDataSet TableDataSetBuilder.toTableDataSet()
           
 

Methods in org.das2.dataset with parameters of type TableDataSet
 void TableDataSetBuilder.append(TableDataSet tds)
           
static void TableUtil.checkForNaN(TableDataSet tds)
           
static Datum TableUtil.closestDatum(TableDataSet table, Datum x, Datum y)
           
static int TableUtil.closestRow(TableDataSet table, int itable, Datum datum)
           
static int TableUtil.closestRow(TableDataSet table, int itable, double x, Units units)
           
static VectorDataSet TableUtil.collapse(TableDataSet ds, int offset, int length)
           
static TableDataSet WeightsTableDataSet.create(TableDataSet source)
           
static void TableUtil.dumpToAsciiStream(TableDataSet tds, Datum xmin, Datum xmax, java.io.OutputStream out)
           
static void TableUtil.dumpToAsciiStream(TableDataSet tds, java.io.OutputStream out)
           
static void TableUtil.dumpToAsciiStream(TableDataSet tds, java.nio.channels.WritableByteChannel out)
           
static void TableUtil.dumpToBinaryStream(TableDataSet tds, java.io.OutputStream out)
           
static void TableUtil.dumpToDas2Stream(TableDataSet tds, java.io.OutputStream out, boolean asciiTransferTypes)
           
static DatumVector TableUtil.getDatumVector(TableDataSet tds, int i)
           
static Datum TableUtil.getLargestYTag(TableDataSet tds)
           
static int TableUtil.getNextRow(TableDataSet ds, int itable, Datum datum)
          return the first row after the datum.
static int TableUtil.getPreviousRow(TableDataSet ds, int itable, Datum datum)
          return the first row before the datum.
static Datum TableUtil.getSmallestYTag(TableDataSet tds)
           
static double[] TableUtil.getYTagArrayDouble(TableDataSet table, int itable, Units units)
           
static DatumVector TableUtil.getYTagsDatumVector(TableDataSet tds, int itable)
           
static TableDataSet TableDataSetGridder.gridLog(TableDataSet tds, Datum xerror, Datum yerror)
          returns a TableDataSet where all the tables are gridded.
static Datum TableUtil.guessYTagWidth(TableDataSet table)
           
static Datum TableUtil.guessYTagWidth(TableDataSet table, int itable)
          guess the y tag cadence by returning the difference of the first two tags.
static WritableTableDataSet WritableTableDataSet.newCopy(TableDataSet tds)
           
static WritableTableDataSet WritableTableDataSet.newEmpty(TableDataSet tds)
           
static int TableUtil.tableIndexAt(TableDataSet table, int i)
           
static double TableUtil.tableMax(TableDataSet tds, Units units)
           
static java.lang.String TableUtil.toString(TableDataSet tds)
           
 

Constructors in org.das2.dataset with parameters of type TableDataSet
AppendTableDataSet(TableDataSet tds1, TableDataSet tds2)
           
ClippedTableDataSet(TableDataSet source, Datum xmin, Datum xmax, Datum ymin, Datum ymax)
           
ClippedTableDataSet(TableDataSet source, DatumRange xrange, DatumRange yrange)
           
ClippedTableDataSet(TableDataSet source, int xoffset, int xlength, int yoffset, int ylength)
           
SimpleTableDataSet(double[] x, double[] y, double[] z, Units xunits, Units yunits, Units zunits, java.lang.String planeName, TableDataSet planeData)
           
TableDataSetWrapper(TableDataSet source)
          Creates a new instance of SourceDataSetWrapper
XSliceDataSet(TableDataSet tdsSource, int i)
           
YSliceDataSet(TableDataSet source, int jIndex, int table)
           
 

Uses of TableDataSet in org.das2.dataset.test
 

Classes in org.das2.dataset.test that implement TableDataSet
 class ContourMeDataSet
           
 class DistTableDataSet
           
 class FunctionTableDataSet
           
 class RipplesDataSet
           
 class SineWaveTable
           
 

Uses of TableDataSet in org.das2.math
 

Methods in org.das2.math with parameters of type TableDataSet
static VectorDataSet Contour.contour(TableDataSet tds, Datum level)
           
static VectorDataSet Contour.contour(TableDataSet tds, DatumVector levels)
          returns a rank 1 dataset, a vector dataset, listing the points of the contour paths.
 

Constructors in org.das2.math with parameters of type TableDataSet
Contour.ContourPlot(TableDataSet tds, DatumVector contourValues)
           
 

Uses of TableDataSet in org.das2.math.fft
 

Classes in org.das2.math.fft that implement TableDataSet
 class WindowTableDataSet
           
 

Methods in org.das2.math.fft that return TableDataSet
static TableDataSet WaveformToSpectrum.getTableDataSet(VectorDataSet vds, int windowSize)
           
static TableDataSet WaveformToSpectrum.getTableDataSet2(VectorDataSet vds, int windowSize)
           
 

Uses of TableDataSet in org.das2.stream
 

Methods in org.das2.stream that return TableDataSet
static TableDataSet StreamUtil.loadTableDataSet(java.lang.String filename)