GNU Octave Wiki: Difference between revisions

From Octave
Jump to navigation Jump to search
(I suggest to include a tutorial like explanation of the plotting capabilities.)
Line 51: Line 51:


=== Plotting tutorial ===
=== Plotting tutorial ===
All or most of the information about plotting in Octave can be found in the manual and on the internet. This information can be too scattered over different resources for a new user to find his/her way into solving a plotting problem/need. This tutorial should be considered as the 'recipe text' by examples if you consider the manual as a 'recipe ingredients only'.
* [[Recap of the hierarchy of each plot element]]
* [[Recap of the hierarchy of each plot element]]
First of all, Octave aims at being compatible with Matlab (TM) as much as possible, so the graphics part is very similar too to Matlab. In Octave the first choice to make is the 'graphics_toolkit'. Standard is the 'gnuplot' toolkit using the Gnuplot software package (http://www.gnuplot.info). The second choice is 'fltk' (http://www.fltk.org). You might want to try to test both of them for your plotting aims to see which solves your problem.
* [[Changing text elements (label, title)]]
* [[Changing text elements (label, title)]]
* [[More control over subplots]]
* [[More control over subplots]]

Revision as of 13:56, 13 July 2012

GNU Octave is a high-level interpreted language, primarily intended for numerical computations. It provides capabilities for the numerical solution of linear and nonlinear problems, and for performing other numerical experiments. It also provides extensive graphics capabilities for data visualization and manipulation. Octave is normally used through its interactive command line interface, but it can also be used to write non-interactive programs. The Octave language is quite similar to Matlab so that most programs are easily portable.

This wiki is intended to supplement the Octave documentation. Before adding content, please check that it is not already part of, or belongs in, the Octave's documentation.

Octave FAQ

The FAQ is a list of frequently asked questions (FAQ) for Octave users and a good place to start.

Octave Conference 2012

Planning for OctConf 2012 is under way. Newbies, experienced users, aspiring developers, and experienced developers are all encouraged to attend.

Table of contents

Below is a temporary attempt to organize the "most wanted" pages of the Wiki. A list of all pages on the wiki can be seen here. To locate something specific, try the wiki's search box, or prepend site:http://www.octave.org/wiki/ to a google search.

Installation Instructions for Windows, MacOS X and GNU/Linux

Building Octave

Octave Forge

Available Packages

Editors & Octave

Plotting tutorial

All or most of the information about plotting in Octave can be found in the manual and on the internet. This information can be too scattered over different resources for a new user to find his/her way into solving a plotting problem/need. This tutorial should be considered as the 'recipe text' by examples if you consider the manual as a 'recipe ingredients only'.

First of all, Octave aims at being compatible with Matlab (TM) as much as possible, so the graphics part is very similar too to Matlab. In Octave the first choice to make is the 'graphics_toolkit'. Standard is the 'gnuplot' toolkit using the Gnuplot software package (http://www.gnuplot.info). The second choice is 'fltk' (http://www.fltk.org). You might want to try to test both of them for your plotting aims to see which solves your problem.

Miscellaneous

External Links