help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Plot settings


From: Francesco Potorti`
Subject: Re: Plot settings
Date: Sat, 20 Sep 2008 16:00:03 +0200

>I'd like to know if there exists somewhere a list of all the available 
>plot properties for octave 3.0.

They should all be in the Graphics Object Properties chapter of the
manual.

>For instance, I'd like to modify the thickness of the marks (not the 
>size I already changed using the "markersize" property), since I'd like 
>to include the figure in some presentation slide.

If you want to check whether by chance a property exists that is not
documented, have a look at the Graphics Objects chapter in the manual
and try to play with get().  If you discover something missing in the
manual, you can signal it to the Octave bugs list
<address@hidden>.

For example:

octave> plot(1:2)
octave> octave> fieldnames(get(get(get(gcf).children).children))
ans =

{
  [1,1] = tag
  [2,1] = type
  [3,1] = parent
  [4,1] = children
  [5,1] = __modified__
  [6,1] = xdata
  [7,1] = ydata
  [8,1] = zdata
  [9,1] = ldata
  [10,1] = udata
  [11,1] = xldata
  [12,1] = xudata
  [13,1] = color
  [14,1] = linestyle
  [15,1] = linewidth
  [16,1] = marker
  [17,1] = markeredgecolor
  [18,1] = markerfacecolor
  [19,1] = markersize
  [20,1] = keylabel
  [21,1] = interpreter
}

-- 
Francesco Potortì (ricercatore)        Voice: +39 050 315 3058 (op.2111)
ISTI - Area della ricerca CNR          Fax:   +39 050 315 2040
via G. Moruzzi 1, I-56124 Pisa         Email: address@hidden
(entrance 20, 1st floor, room C71)     Web:   http://fly.isti.cnr.it/


reply via email to

[Prev in Thread] Current Thread [Next in Thread]