Packages

  • package root
    Definition Classes
    root
  • package scalation
    Definition Classes
    root
  • package plot

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

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

    Definition Classes
    scalation
  • Canvas
  • Contour
  • ContourTest
  • FCanvas
  • FPlot
  • FPlotTest
  • FramelessPlot
  • Plot
  • PlotM
  • PlotMTest
  • PlotMTest2
  • PlotTest
  • package random

    The random package contains classes, traits and objects for the generation of random numbers.

    The random package contains classes, traits and objects for the generation of random numbers.

    Definition Classes
    scalation
  • package scala2d

    The scala2d package contains classes, traits and objects for simple 2D graphics in Scala, based upon java.swing, java.awt and It makes java.awt and javax.swing GUI classes available and insulates the rest of ScalaTion from changes to GUI libraries.

    The scala2d package contains classes, traits and objects for simple 2D graphics in Scala, based upon java.swing, java.awt and It makes java.awt and javax.swing GUI classes available and insulates the rest of ScalaTion from changes to GUI libraries. Only scalation.scala2d should import from java.awt or javax.swing.

    Definition Classes
    scalation
    See also

    Shapes.scala for providing classes in java.awt.geom.

  • package stat

    The stat package contains classes, traits and objects for basic statistical functions and analyses.

    The stat package contains classes, traits and objects for basic statistical functions and analyses. The package object itself defines an implicit conversion from scalation.linalgebra.VectorD to StatVector.

    Definition Classes
    scalation
  • package tenalgebra

    The tenalgebra package contains classes, traits and objects for tensors.

    The tenalgebra package contains classes, traits and objects for tensors.

    Definition Classes
    scalation

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
Visibility
  1. Public
  2. Protected

Type Members

  1. class Canvas extends Panel

    The Canvas class provides a canvas on which to draw the plot.

  2. class Contour extends VizFrame

    The Contour class takes a function 'f' and displays 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 displays 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 optimizer (e.g., a Conjugate Gradient NLP solver).

  3. class FCanvas extends Panel

    The FCanvas class provides a canvas on which to draw the plot.

  4. class FPlot extends VizFrame

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

    The FPlot 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.

  5. class FramelessPlot extends AnyRef

    The FramelessPlot class is used for embedded applications.

  6. 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. ------------------------------------------------------------------------------ Zoom functionality has two options: When clicked on the plot label the value on that label will be selected as min/max value. By default, the clicked value on x and y axis will be chosen as min value. To change the value to max the resetLabel with title "Switch min and max value" can be used. ------------------------------------------------------------------------------

  7. 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. val BASE_DIR: String

    The relative path for base directory

  2. object ContourTest extends App

    The ContourTest object is used to test the Contour class.

  3. object FPlotTest extends App

    The FPlotTest object is used to test the FPlot class.

    The FPlotTest object is used to test the FPlot class. > runMain scalation.plot.FPlotTest

  4. object Plot extends Serializable

    The Plot companion object provides factory methods for creating plots.

  5. object PlotM extends Serializable

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

  6. object PlotMTest extends App

    The PlotMTest object is used to test the PlotM class.

    The PlotMTest object is used to test the PlotM class. > runMain scalation.plot.PlotMTest

  7. object PlotMTest2 extends App

    The PlotMTest2 object is used to test the PlotM class.

    The PlotMTest2 object is used to test the PlotM class. This version also plots lines connecting the points. > runMain scalation.plot.PlotMTest2

  8. object PlotTest extends App

    The PlotTest object is used to test the Plot class.

    The PlotTest object is used to test the Plot class. > runMain scalation.plot.PlotTest

Inherited from AnyRef

Inherited from Any

Ungrouped