Figure

class Figure(name: String, var rows_: Int, var cols_: Int)
Companion
object
class Object
trait Matchable
class Any

Value members

Concrete methods

def clear(): Unit

Clears the current figure

Clears the current figure

def clearPlot(i: Int): Unit
def cols: Int

How many cols of plots are in the figure

How many cols of plots are in the figure

def cols_=(newcols: Int): Unit
def drawPlots(g2d: Graphics2D): Unit
def height: Int

Height of figure on screen (or in image)

Height of figure on screen (or in image)

def height_=(newheight: Int): Unit
def refresh(): Unit

Redraws the figure

Redraws the figure

def rows: Int

How many rows of plots are in the figure

How many rows of plots are in the figure

def rows_=(newrows: Int): Unit
def saveas(filename: String, dpi: Int): Unit

Saves the current figure at the requested dpi to the given filename.

Saves the current figure at the requested dpi to the given filename.

def subplot(i: Int): Plot

Selects the given subplot.

Selects the given subplot.

def subplot(rows: Int, cols: Int, select: Int): Plot

Selects the given subplot. Note that select is 0-based, and is therefore incompatible with matlab and Scalala

Selects the given subplot. Note that select is 0-based, and is therefore incompatible with matlab and Scalala

def visible: Boolean
def visible_=(newvis: Boolean): Unit
def width: Int

Width of figure on screen (or in image)

Width of figure on screen (or in image)

def width_=(newwidth: Int): Unit