scalation

plot

package plot

The plot package contains classes, traits and objects for simple plotting of x-y data.

Visibility
  1. Public
  2. All

Type Members

  1. class Contour extends MainFrame

    The Contour class takes a function f and diplays color-coded values for f(x, y) over a two dimensional grid defined the lower (lb) and upper (ub) bounds.

  2. class Histogram extends MainFrame

    The Histogram class takes a vector of values, counts the number of values in each of several intervals and displays the counts vertically in a histogram.

  3. class Plot extends MainFrame

    The Plot class takes x and y vectors of data values and plots the (x, y) data points.

  4. class PlotM extends MainFrame

    The PlotM class takes an x vector and a y matrix of data values and plots the (x, y_i) data points for each row y_i of the matrix.

Value Members

  1. object ContourTest extends App

    This object is used to test the Contour class.

  2. object HistogramTest extends App

    This object is used to test the Histogram class.

  3. object PlotMTest extends App

    This object is used to test the PlotM class.

  4. object PlotTest extends App

    This object is used to test the Plot class.