On 21 Jan 2010, at 17:02, Joe Strout wrote:

> So, it appears as though a complete install of Octave (able to plot)
> would include Octave.app, Gnuplot.app, and AquaTerm.app.

Aquaterm is actually not necessary to plot, even when using the  
Gnuplot backend.
If you have X11 installed on your mac you can do

putenv ("GNUTERM", "x11")
plot (rand(10,2))

to switch gnuplot to the x11 terminal
and you can do

close all
putenv ("GNUTERM", "aqua")
plot (rand(10,2))

to switch back to Aquaterm

> Or, perhaps the alleged built-in plotting capability can be somehow
> activated -- though all my googling has entirely failed to find any
> mention of this beyond the cryptic remark in Octave's Readme.html.

It's in the news file: typing "news" at the Octave prompt you get  
(among many other useful info)

** New experimental OpenGL/FLTK based plotting system.

     An experimental plotting system based on OpenGL and the FLTK
     toolkit is now part of Octave.  This backend is disabled by
     default.  You can switch to using it with the command

         backend ("fltk")

     for all future figures or for a particular figure with the command

         backend (h, "fltk")

     where "h" is a valid figure handle.  Please note that this backend
     does not yet support text objects.  Obviously, this is a necessary
     feature before it can be considered usable.  We are looking for
     volunteers to help implement this missing feature.

It is also in the inline manual in the "advanced plotting" section:

type

doc plotting

or

doc backend

c.

------------------------------------------------------------------------------
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities for Conference
attendees to learn about information security's most important issues through
interactions with peers, luminaries and emerging and established companies.
http://p.sf.net/sfu/rsaconf-dev2dev
_______________________________________________
Octave-dev mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/octave-dev

Reply via email to