Packages

  • package root
    Definition Classes
    root
  • package scalation

    The scalation package specifies system-wide constants for directory paths.

    The scalation package specifies system-wide constants for directory paths. Sub-packages may wish to define 'BASE-DIR = DATA_DIR + ⁄ + <package>' in their own 'package.scala' files. For maintainability, directory paths should only be specified in 'package.scala' files.

    Definition Classes
    root
  • package linalgebra

    The linalgebra package contains classes, traits and objects for linear algebra, including vectors and matrices for real and complex numbers.

    The linalgebra package contains classes, traits and objects for linear algebra, including vectors and matrices for real and complex numbers.

    Definition Classes
    scalation
  • package math

    The math package contains classes, traits and objects for common mathematical operations.

    The math package contains classes, traits and objects for common mathematical operations. Its package object defines exponentiation, logarithmic, trigonometric, etc. operators and functions.

    Definition Classes
    scalation
  • package par
    Definition Classes
    scalation
  • 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
  • FramelessPlot
  • Plot
  • PlotM
  • PlotMTest
  • 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 relalgebra

    The relalgebra package contains classes, traits and objects for columnar relational algebra, where columns are vectors from the linalgebra package.

    The relalgebra package contains classes, traits and objects for columnar relational algebra, where columns are vectors from the linalgebra package.

    Definition Classes
    scalation
  • package scala2d

    The scala2d package contains classes, traits and objects for for simple 2D graphics in scala, based upon java.swing, java.awt and java_awt_geom.

    The scala2d package contains classes, traits and objects for for simple 2D graphics in scala, based upon java.swing, java.awt and java_awt_geom.

    Definition Classes
    scalation
  • 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 util

    The util package contains classes, traits and objects for basic utility functions.

    The util package contains classes, traits and objects for basic utility functions.

    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. All

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.

  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. object ContourTest extends App

    The ContourTest object is used to test the Contour class.

  2. object Plot extends Serializable

    The Plot companion object provides factory methods for creating plots.

  3. object PlotM extends Serializable

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

  4. object PlotMTest extends App

    The PlotMTest object is used to test the PlotM class.

  5. object PlotTest extends App

    The PlotTest object is used to test the Plot class.

    The PlotTest object is used to test the Plot class. > run-main scalation.plot.PlotTest

Inherited from AnyRef

Inherited from Any

Ungrouped