Uses of Class
edu.uah.math.distributions.Domain

Packages that use Domain
edu.uah.math.devices   
edu.uah.math.distributions   
 

Uses of Domain in edu.uah.math.devices
 

Methods in edu.uah.math.devices that return Domain
 Domain DistributionGraph.getDomain()
          This method returns the domain for the horizontal axis of the graph.
 Domain Timeline.getDomain()
          This method returns the domain.
 Domain ScatterPlot.getXDomain()
          This method returns the domain of the x variable.
 Domain ScatterPlot.getYDomain()
          This method returns the domain of the y variable.
 

Methods in edu.uah.math.devices with parameters of type Domain
 void Graph.drawAxis(java.awt.Graphics g, Domain d, double c, int o)
          This method draws an axis corresponding to a sepcified domain at specified poisiton relative to the other variable, with a specified orientation.
 void ScatterPlot.setDomain(Domain d)
          This method sets the common domain for x and y.
 void DistributionGraph.setDomain(Domain d)
          This method sets the domain for the horizontal axis.
 void InteractiveHistogram.setDomain(Domain d)
          This method sets the domain.
 void Timeline.setDomain(Domain d)
          This method sets the domain.
 void ScatterPlot.setDomains(Domain d1, Domain d2)
          This method sets the domains.
 void ScatterPlot.setXDomain(Domain d)
          This method sets the domain of the x variable.
 void ScatterPlot.setYDomain(Domain d)
          This method sets the domain of the y variable.
 

Constructors in edu.uah.math.devices with parameters of type Domain
BivariateScatterPlot(Domain d)
          This special constructor creates a new BivariateScatterPlot with specified common domain and default names.
BivariateScatterPlot(Domain d1, Domain d2)
          This special constructor creates a new BivariateScatterPlot with specified domains and default names.
BivariateScatterPlot(Domain d1, java.lang.String n1, Domain d2, java.lang.String n2)
          This general constructor creates a new BivariateScatterPlot with specified domains and names.
BivariateScatterPlot(Domain d, java.lang.String n1, java.lang.String n2)
          This special constructor creates a new BivariateScatterPlot with common domain and specified names.
InteractiveHistogram(Domain d)
          This general constructor creates a new interactive histogram corresponding to a specified domain.
ScatterPlot(Domain d)
          This special constructor creates a new scatterplot with a specified common domain and default names "x" and "y".
ScatterPlot(Domain d1, Domain d2)
          This special constructor creates a new scatterplot with specified domains and default names "x" and "y".
ScatterPlot(Domain d1, java.lang.String n1, Domain d2, java.lang.String n2)
          This general constructor creates a new scatterplot with specified domains and names.
ScatterPlot(Domain d, java.lang.String n1, java.lang.String n2)
          This special constructor creates a new scatterplot with a specified common x and y domain and specified names.
Timeline(Domain d)
          This special constructor creates a new timeline corresponding to a specified domain and the default name "x".
Timeline(Domain d, java.lang.String n)
          This general constructor creates a new timeline corresponding to a specified domain and a specified name for the underlying variable.
UserScatterPlot(Domain d)
          This special constructor creates a new user scatterplot with a specified common domain for the variables and with default names "x" and "y".
UserScatterPlot(Domain d1, Domain d2)
          This special constructor creates a new user scatterplot with spcified domains and default names "x" and "y".
UserScatterPlot(Domain d1, java.lang.String n1, Domain d2, java.lang.String n2)
          This general constructor creates a new scatterplot correpsonding to specified domains and names.
UserScatterPlot(Domain d, java.lang.String n1, java.lang.String n2)
          This special constructur creates a new user scatterplot with common domain for the variables, and with specified names.
 

Uses of Domain in edu.uah.math.distributions
 

Methods in edu.uah.math.distributions that return Domain
 Domain Distribution.getDomain()
          This method returns the domain of the distribution.
 Domain IntervalData.getDomain()
          This method returns the domain.
 

Methods in edu.uah.math.distributions with parameters of type Domain
protected  void Distribution.setDomain(Domain d)
          This method sets the domain of the distribution for purposes of data collection and for default computations.
 void IntervalData.setDomain(Domain d)
          This method sets the domain of the data set.
 

Constructors in edu.uah.math.distributions with parameters of type Domain
IntervalData(Domain d)
          This special constructor creates a new data distribution with a specified domain and the default name "X".
IntervalData(Domain d, java.lang.String n)
          This general constructor creates a new data distribution with a specified domain and a specified name.