GNU 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.
Other free alternatives to MATLAB include Scilab and FreeMat. Octave is more compatible with MATLAB than Scilab is and FreeMat has not been updated since June 2013.

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 4 January 1993 and on 17 February 1994 version 1.0 was released. Version 4.0.0 was released on 29 May 2015.
The program is named after Octave Levenspiel, a former professor of the principal author. Levenspiel was known for his ability to perform quick back-of-the-envelope calculations.

Development history

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.
Dramatic acceleration with OpenCL or CUDA is also possible with use of GPUs.

Technical details

The Octave language is an interpreted programming language. It is a structured programming language 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 Linux and macOS.

Notable features

Command and variable name completion

Typing a TAB character on the command line causes Octave to attempt to complete variable, function, and file names. 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", :

octave:1> x.a = 1; x.b = ; x.c = "string";
octave:2> x.a
ans = 1
octave:3> x.b
ans =
1 2
3 4
octave:4> x.c
ans = string
octave:5> x
x =

Short-circuit boolean operators

Octave's '&&' and '||' logical operators are evaluated in a short-circuit fashion, 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 of Lisp. The general form of an unwind_protect block looks like this:

unwind_protect
body
unwind_protect_cleanup
cleanup
end_unwind_protect

As a general rule, GNU Octave recognizes as termination of a given 'block' either the keyword 'end' 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 :

try
body
catch
exception_handling
end

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.

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 argument in the list.

function s = plus
if
s = 0;
else
s = varargin + plus ;
end
end

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:

function varargout = multiassign
for k=1:nargout
varargout = data;
end
end

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:

  1. include
...
ColumnVector NumRands;
NumRands = 10;
NumRands = 1;
octave_value_list f_arg, f_ret;
f_arg = octave_value;
f_ret = feval;
Matrix unis.matrix_value);

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.
Octave treats incompatibility with MATLAB as a bug; therefore, it could 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 in principle are compatible with Octave. However, while they are 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, :
  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. ;
  4. Strings can be defined with the double-quote " character as well as the single-quote ' character;
  5. When the variable type is single, Octave calculates the "mean" in the single-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. Presence of a do-until loop.

    Function compatibility

Many, but not all, of the numerous MATLAB functions are available in GNU Octave, some of them accessible through packages in . The functions available as part of either core Octave or Forge packages are listed .
A list of unavailable functions is included in the Octave function . Unimplemented functions are also listed under many Octave Forge packages in the .
When an unimplemented function is called the following error message is shown:

octave:1> guide
warning: the 'guide' function is not yet implemented in Octave
Please read to learn how you can contribute missing functionality.
error: 'guide' undefined near line 1 column 1

User interfaces

Octave comes with an official graphical user interface and an integrated development environment based on Qt. It has been available since Octave 3.8, and has become the default interface with the release of Octave 4.0.
It was well-received by EDN contributor, who said " now has a very workable GUI."
Several 3rd-party graphical front-ends have also been developed, like ToolboX for coding education.

GUI applications

With Octave code, the user can create GUI applications . Here are some examples.
Button, edit control, checkbox
  1. create figure and panel on it
f = figure;
  1. create a button
b1 = uicontrol ;
  1. create an edit control
e1 = uicontrol ;
  1. create a checkbox
c1 = uicontrol ;
Textbox
prompt = ;
defaults = ;
rowscols = ;
dims = inputdlg ;
Listbox with message boxes.
my_options = ;
= listdlg ;
if
msgbox ;
for i = 1:numel
msgbox ;
endfor
else
msgbox ;
endif
Radiobuttons
  1. create figure and panel on it
f = figure;
  1. create a button group
gp = uibuttongroup
  1. create a buttons in the group
b1 = uicontrol ;
b2 = uicontrol ;
  1. create a button not in the group
b3 = uicontrol ;

Packages

Octave also has packages available for free. Those packages are located at Octave-Forge . Available packages are: