Suvarna Garge (Editor)

GNU Octave

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Written in
  
C, C++, Fortran

GNU Octave

Developer(s)
  
John W. Eaton and many others

Initial release
  
1988; 29 years ago (1988)

Stable release
  
4.2.0 (November 13, 2016; 3 months ago (2016-11-13)) [±]

Preview release
  
4.2.0 rc4 (November 9, 2016; 3 months ago (2016-11-09)) [±]

Repository
  
hg.savannah.gnu.org/hgweb/octave

GNU Octave is software featuring a high-level programming language, primarily intended for numerical computations. Octave helps in solving linear and nonlinear problems numerically, and for performing other numerical experiments using a language that is mostly compatible with Matlab. It may also be used as a batch-oriented language. Since it is part of the GNU Project, it is free software under the terms of the GNU General Public License.

Contents

Octave is one of the major free alternatives to Matlab, others being FreeMat and Scilab. Scilab, however, puts less emphasis on (bidirectional) syntactic compatibility with Matlab than Octave does.

History

The project was conceived around 1988. At first it was intended to be a companion to a chemical reactor design course. Real development was started by John W. Eaton in 1992. The first alpha release dates back to January 4, 1993 and on February 17, 1994 version 1.0 was released. Version 4.0.0 was released on May 29, 2015.

The program is named after Octave Levenspiel, a former professor of the principal author. Levenspiel is known for his ability to perform quick back-of-the-envelope calculations.

Developments

In addition to use on desktops for personal scientific computing, Octave is used in academia and industry. For example, Octave was used on a massive parallel computer at Pittsburgh supercomputing center to find vulnerabilities related to guessing social security numbers.

Technical details

  • Octave is written in C++ using the C++ standard library.
  • Octave uses an interpreter to execute the Octave scripting language.
  • Octave is extensible using dynamically loadable modules.
  • Octave interpreter has an OpenGL-based graphics engine to create plots, graphs and charts and to save or print them. Alternatively, gnuplot can be used for the same purpose.
  • Octave versions 3.8.0 and later include a Graphical User Interface (GUI) in addition to the traditional Command Line Interface (CLI).
  • Octave, the language

    The Octave language is an interpreted programming language. It is a structured programming language (similar to C) and supports many common C standard library functions, and also certain UNIX system calls and functions. However, it does not support passing arguments by reference.

    Octave programs consist of a list of function calls or a script. The syntax is matrix-based and provides various functions for matrix operations. It supports various data structures and allows object-oriented programming.

    Its syntax is very similar to Matlab, and careful programming of a script will allow it to run on both Octave and Matlab.

    Because Octave is made available under the GNU General Public License, it may be freely changed, copied and used. The program runs on Microsoft Windows and most Unix and Unix-like operating systems, including macOS.

    Command and variable name completion

    Typing a TAB character on the command line causes Octave to attempt to complete variable, function, and file names (similar to Bash's tab completion). Octave uses the text before the cursor as the initial portion of the name to complete.

    Command history

    When running interactively, Octave saves the commands typed in an internal buffer so that they can be recalled and edited.

    Data structures

    Octave includes a limited amount of support for organizing data in structures. In this example, we see a structure "x" with elements "a", "b", and "c", (an integer, an array, and a string, respectively):

    Short-circuit boolean operators

    Octave's '&&' and '||' logical operators are evaluated in a short-circuit fashion (like the corresponding operators in the C language), in contrast to the element-by-element operators '&' and '|'.

    Increment and decrement operators

    Octave includes the C-like increment and decrement operators '++' and '--' in both their prefix and postfix forms. Octave also does augmented assignment, e.g. 'x += 5'.

    Unwind-protect

    Octave supports a limited form of exception handling modelled after the 'unwind_protect' of Lisp. The general form of an unwind_protect block looks like this:

    As a general rule, GNU Octave recognizes as termination of a given 'block' either the keyword 'end' (which is compatible with the Matlab language) or a more specific keyword 'end_block'. As a consequence, an 'unwind_protect' block can be terminated either with the keyword 'end_unwind_protect' as in the example, or with the more portable keyword 'end'.

    The cleanup part of the block is always executed. In case an exception is raised by the body part, cleanup is executed immediately before propagating the exception outside the block 'unwind_protect'.

    GNU Octave also supports another form of exception handling (compatible with the Matlab language):

    This latter form differs from an 'unwind_protect' block in two ways. First, exception_handling is only executed when an exception is raised by body. Second, after the execution of exception_handling the exception is not propagated outside the block (unless a 'rethrow( lasterror )' statement is purposely inserted within the exception_handling code).

    Variable-length argument lists

    Octave has a mechanism for handling functions that take an unspecified number of arguments without explicit upper limit. To specify a list of zero or more arguments, use the special argument varargin as the last (or only) argument in the list.

    Variable-length return lists

    A function can be set up to return any number of values by using the special return value varargout. For example:

    C++ integration

    It is also possible to execute Octave code directly in a C++ program. For example, here is a code snippet for calling rand([10,1]):

    C and C++ code can be integrated into GNU Octave by creating oct files, or using the Matlab compatible MEX files.

    Matlab compatibility

    Octave has been built with Matlab compatibility in mind, and shares many features with Matlab:

    1. Matrices as fundamental data type.
    2. Built-in support for complex numbers.
    3. Powerful built-in math functions and extensive function libraries.
    4. Extensibility in the form of user-defined functions.

    In fact, Octave treats incompatibility with Matlab as a bug; therefore, it can be considered a software clone, which does not infringe software copyright as per Lotus v. Borland court case.

    Matlab scripts from the MathWorks' FileExchange repository are compatible with Octave, but can't be used legally due the Terms of use. While often provided and uploaded by users under an Octave compatible and proper Open source BSD license, the fileexchange's Terms of use prohibit any usage beside MathWorks proprietary Matlab.

    Syntax compatibility

    There are a few purposeful, albeit minor, syntax additions:

    1. Comment lines can be prefixed with the # character as well as the % character;
    2. Various C-based operators ++, --, +=, *=, /= are supported;
    3. Elements can be referenced without creating a new variable by cascaded indexing, e.g. [1:10](3);
    4. Strings can be defined with the " character as well as the ' character;
    5. When the variable type is single, Octave calculates the "mean" in the single-domain (Matlab in double-domain) which is faster but gives less accurate results;
    6. Blocks can also be terminated with more specific Control structure keywords, i.e., endif, endfor, endwhile, etc.;
    7. Functions can be defined within scripts and at the Octave prompt;
    8. All operators perform automatic broadcasting or singleton expansion.
    9. Presence of a do-until loop (similar to do-while in C).

    Function compatibility

    Many of the numerous Matlab functions are available in GNU Octave, some of them are accessible through packages via Octave-forge, but not all Matlab functions are available in GNU Octave. List of unavailable functions exists in Octave, and developers are seeking for help to implement them. Looking for function __unimplemented.m__, leads to the list of unimplemented functions.

    Unimplemented functions are also categorized in Image, Mapping, Optimization, Signal, and Statistics packages.

    When an unimplemented function is called the following error message is shown:

    User interfaces

    Until version 3.8, Octave did not come with a graphical user interface (GUI)/integrated development environment (IDE) by default. However, an official graphical interface based on Qt has now been migrated to the main source repository and is available with Octave 3.8, but not as the default interface. It has become the default interface with the release of Octave 4.0. Several 3rd-party graphical front-ends have been developed.

    References

    GNU Octave Wikipedia