scalation

plot

package plot

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

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. plot
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. class Contour extends VizFrame

    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.

    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. An optional path is included that can be used to show, for example, the search path taken by an optimzer (e.g., a Conjugate Gradient NLP solver).

  2. class Plot extends VizFrame

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

    The Plot class takes 'x' and 'y' vectors of data values and plots the '(x, y)' data points. Optionally, a 'z' vector may be plotted with 'y'. Note, axes are determined by the 'x' and 'y' vectors only. For more vertical vectors use PlotM.

  3. class PlotM extends VizFrame

    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

    The ContourTest object is used to test the Contour class.

  2. object PlotM extends Serializable

    The PlotM companion object provides a builder method for plotting several 'y' vectors versus an 'x' vector.

  3. object PlotMTest extends App

    The PlotMTest object is used to test the PlotM class.

  4. object PlotTest extends App

    The PlotTest object is used to test the Plota class.

Inherited from AnyRef

Inherited from Any

Ungrouped