Uses of Class
edu.ull.cgunay.plots.Grapher

Packages that use Grapher
edu.ull.cgunay.plots Grapher independent plotting system that allows using external grapher programs to display plots created in Java.  
 

Uses of Grapher in edu.ull.cgunay.plots
 

Subclasses of Grapher in edu.ull.cgunay.plots
 class GNUPlot
          Grapher implementation for plotting with the gnuplot program.
 class MatLab
          Grapher implementation for plotting with the MatLab program.
 

Fields in edu.ull.cgunay.plots declared as Grapher
(package private)  Grapher PlotHandle.grapher
          The Grapher that displayed the Plot.
protected  Grapher Plot.grapher
          Grapher instance associated with the plot (if available).
 

Methods in edu.ull.cgunay.plots that return Grapher
 Grapher PlotHandle.getGrapher()
          Get the value of grapher.
 Grapher Plot.getGrapher()
          Get the value of grapher.
 

Methods in edu.ull.cgunay.plots with parameters of type Grapher
 String MultiDataPlot.recipe(Grapher grapher)
          Renders given AxisTemplates to create Grapher.Axis's with the given Grapher.
 String SuperposedDataPlot.recipe(Grapher grapher)
          Combines given datasets to be displayed on a single axis.
 String ErrorBarPlot.recipe(Grapher grapher)
          Creates an "errorbar" type dataset for the spike plot and associates with a single axis.
 String SingleDataPlot.recipe(Grapher grapher)
          Creates an "errorbar" type dataset for the spike plot and associates with a single axis.
 String ProfilePlot.recipe(Grapher grapher)
          Create a ProfileData object, and send to the Axis.
 String SpikePlot.recipe(Grapher grapher)
          Creates a "impulse" type dataset for the spike plot and associates with a single axis.
 void Plot.setGrapher(Grapher v)
          Set the value of grapher.
abstract  String Plot.recipe(Grapher grapher)
          A new way to describe plots in terms of Grapher capabilities.
 String Plot.plot(Grapher grapher)
          Deprecated. Grapher handles things by directly calling Grapher.plotToString() and using the PlotHandle
 String SimplePlot.body(Grapher grapher)
          Helper function to set grapher before calling body.
 String SimplePlot.preamble(Grapher grapher)
          Returns a preamble to appear before the plot command.
 void SimplePlot.prepare(Grapher grapher)
          Prepare the axis and data variables with given grapher.
 String SimplePlot.recipe(Grapher grapher)
          A new way to describe plots in terms of Grapher capabilities.
 

Constructors in edu.ull.cgunay.plots with parameters of type Grapher
PlotHandle(Plot plot, Grapher grapher, int windowNumber)
          Association of a plot with the grapher.
PlotHandle(Collection plots, Grapher grapher, int windowNumber)
          Association of a plot group with the grapher.