Uses of Interface
org.virbo.dataset.MutablePropertyDataSet

Packages that use MutablePropertyDataSet
org.virbo.dataset QDataSets are less abstract and more flexible data model for das2. 
org.virbo.dsutil   
 

Uses of MutablePropertyDataSet in org.virbo.dataset
 

Subinterfaces of MutablePropertyDataSet in org.virbo.dataset
 interface WritableDataSet
          Mutable datasets warning: No dataset should be mutable once it is accessible to the rest of the system.
 

Classes in org.virbo.dataset that implement MutablePropertyDataSet
 class AbstractDataSet
          Abstract class to simplify defining datasets.
 class BDataSet
          rank 1,2,or 3 dataset backed by Integer (4 byte) array.
 class DDataSet
          rank 1,2,or 3 dataset backed by double array.
 class FDataSet
          rank 1,2,or 3 dataset backed by double array.
 class IDataSet
          rank 1,2,or 3 dataset backed by Integer (4 byte) array.
 class IndexGenDataSet
          This is also used a base class.
 class JoinDataSet
          create a higher rank dataset with dim 0 being a join dimension.
 class SDataSet
          rank 1,2,or 3 dataset backed by Integer (4 byte) array.
 class Slice0DataSet
          Wraps a rank N dataset, slicing on an index of the first dimension to make a rank N-1 dataset.
 class Slice1DataSet
          return a rank N-1 dataset from a rank N dataset by slicing on the first dimension.
 class SortDataSet
          wraps QDataSet, rearranging the elements of the first index as specified by a rank 1 data set of indeces
 class TagGenDataSet
           
 class TransposeRank2DataSet
           
 class TrimStrideWrapper
           
 

Methods in org.virbo.dataset that return MutablePropertyDataSet
static MutablePropertyDataSet DataSetUtil.indexGenDataSet(int n)
          creates a dataset of integers 0,1,2,...,n-1.
static MutablePropertyDataSet DataSetOps.leafTrim(QDataSet ds, int start, int end)
          pull out a subset of the dataset by reducing the number of columns in the last dimension.
static MutablePropertyDataSet DataSetUtil.replicateDataSet(int n, double value)
          creates a dataset with the given cadence, start and length.
static MutablePropertyDataSet DataSetOps.slice0(QDataSet ds, int index)
          slice on the first dimension
static MutablePropertyDataSet DataSetOps.slice1(QDataSet ds, int index)
          this strange dataset operator assumes a square or qube dataset by picking the index-th element of dataset's second dimension, without regard to tags.
static MutablePropertyDataSet DataSetOps.slice2(QDataSet ds, int index)
          this strange dataset operator assumes a square or qube dataset by picking the index-th element of dataset's second dimension, without regard to tags.
static MutablePropertyDataSet DataSetUtil.tagGenDataSet(int n, double start, double cadence)
          creates a dataset with the given cadence, start and length.
static MutablePropertyDataSet DataSetOps.trim(QDataSet ds, int offset, int len)
           
 

Methods in org.virbo.dataset with parameters of type MutablePropertyDataSet
static void DataSetUtil.addQube(MutablePropertyDataSet ds)
          add QUBE property to dataset, maybe verifying that it is a qube.
static void DataSetUtil.putProperties(java.util.Map<java.lang.String,java.lang.Object> properties, MutablePropertyDataSet ds)
          copy all properties into the dataset by iterating through the map.
 

Uses of MutablePropertyDataSet in org.virbo.dsutil
 

Classes in org.virbo.dsutil that implement MutablePropertyDataSet
 class TransposeRankNDataSet
          wrap a qube dataset to transpose the indeces.