Uses of Class
org.simbrain.gauge.core.Dataset

Packages that use Dataset
org.simbrain.gauge.core The simbrain.gauge.core package contains the logical code for gauges. 
 

Uses of Dataset in org.simbrain.gauge.core
 

Fields in org.simbrain.gauge.core declared as Dataset
protected  Dataset Projector.downstairs
          A set of low-d datapoints, each of which is an array of doubles The projection of the upstairs data.
protected  Dataset Projector.upstairs
          A set of hi-d datapoints, each of which is an array of doubles The data to be projected.
 

Methods in org.simbrain.gauge.core that return Dataset
 Dataset Projector.getDownstairs()
           
 Dataset Gauge.getDownstairs()
          Convenience method to get downstairs dataset.
 Dataset Projector.getUpstairs()
           
 Dataset Gauge.getUpstairs()
          Convenience method to get upstairs dataset.
 

Methods in org.simbrain.gauge.core with parameters of type Dataset
 void ProjectSammon.init(Dataset up, Dataset down)
          Perform necessary initialization.
 void Projector.init(Dataset up, Dataset down)
          Initialize the projector with high and low-d data.
 void ProjectCoordinate.init(Dataset up, Dataset down)
          Initializes the coordinage dataset.
static double[] AddData.nnSubspace(Dataset upstairs, Dataset downstairs, double[] hiPoint)
          Adds new datapoint to subspace spanned by nearest-neighbors.
 void Projector.setDownstairs(Dataset downstairs)
           
 void Projector.setUpstairs(Dataset upstairs)
           
static double[] AddData.triangulate(Dataset upstairs, Dataset downstairs, double[] hiPoint)
          Adds a new datapoint which preserves distances to nearest neighbors.