The project was conceived around 1988.[6] At first it was intended to be a companion to a chemical reactor design course. Full 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 9.2.0 was released on 7 June 2024.[7]
Publication of Octave 6.1.0 (QT5 preferred, Qt 4.x deprecated for remove in 7)[17]
6 April 2022
Publication of Octave 7.1.0 (QT5 preferred), improved graphics backend and matlab compatibility[18]
7 March 2023
Publication of Octave 8.1.0, improved graphics backend and matlab compatibility[19]
14 March 2024
Publication of Octave 9.1.0, general, matlab compatibility, and graphics improvements.[20]
7 June 2024
Publication of Octave 9.2.0, bug and GUI fixes.[21]
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.[22]
Acceleration with OpenCL or CUDA is also possible with use of GPUs.[23]
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.
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.[24] However, it does not support passing arguments by reference[25] although function arguments are copy-on-write to avoid unnecessary duplication.
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.[31]
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):
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 |.
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 endblock or, in some cases, 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):
trybodycatchexception_handlingend
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 explicitly 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. varargin is a cell array containing all the input arguments.
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 sourceBSD license, the FileExchange Terms of use prohibit any usage beside MathWorks' proprietary MATLAB.[32][33][34]
Comment lines can be prefixed with the # character as well as the % character;
Various C-based operators ++, --, +=, *=, /= are supported;
Elements can be referenced without creating a new variable by cascaded indexing, e.g. [1:10](3);
Strings can be defined with the double-quote " character as well as the single-quote ' character;
When the variable type is single (a single-precision floating-point number), Octave calculates the "mean" in the single-domain (MATLAB in double-domain) which is faster but gives less accurate results;
Blocks can also be terminated with more specific Control structure keywords, i.e., endif, endfor, endwhile, etc.;
Functions can be defined within scripts and at the Octave prompt;
Presence of a do-until loop (similar to do-while in C).
Function compatibility
Many, but not all, of the numerous MATLAB functions are available in GNU Octave, some of them accessible through packages in Octave Forge. The functions available as part of either core Octave or Forge packages are listed onlineArchived 2024-03-14 at the Wayback Machine.
A list of unavailable functions is included in the Octave function __unimplemented.m__. Unimplemented functions are also listed under many Octave Forge packages in the Octave Wiki.
When an unimplemented function is called the following error message is shown:
Octave comes with an official graphical user interface (GUI) and an integrated development environment (IDE) based on Qt. It has been available since Octave 3.8,[35] and has become the default interface (over the command-line interface) with the release of Octave 4.0.[12]
It was well-received by an EDN contributor, who wrote "[Octave] now has a very workable GUI" in reviewing the then-new GUI in 2014.[36]
Several 3rd-party graphical front-ends have also been developed, like ToolboX for coding education.
# create figure and panel on itf=figure;# create a button (default style)b1=uicontrol(f,"string","A Button","position",[101015040]);# create an edit controle1=uicontrol(f,"style","edit","string","editable text","position",[106030040]);# create a checkboxc1=uicontrol(f,"style","checkbox","string","a checkbox","position",[1012015040]);
# create figure and panel on itf=figure;# create a button groupgp=uibuttongroup(f,"Position",[00.511])# create a buttons in the groupb1=uicontrol(gp,"style","radiobutton","string","Choice 1","Position",[1015010050]);b2=uicontrol(gp,"style","radiobutton","string","Choice 2","Position",[105010030]);# create a button not in the groupb3=uicontrol(f,"style","radiobutton","string","Not in the group","Position",[105010050]);
Packages
Octave also has many packages available. Those packages are located at Octave-Forge Octave Forge - Packages, or Github Octave Packages. It is also possible for anyone to create and maintain packages.
Comparison with other similar software
Alternatives to GNU Octave under an open source license, other than the aforementioned MATLAB, include Scilab and FreeMat.[37][38][39][40] Octave is more compatible with MATLAB than Scilab is,[37][41][42] and FreeMat has not been updated since June 2013.[43]
^Kapuno, Raul Raymond (2008). Programming for Chemical Engineers Using C, C++, and MATLAB. Jones & Bartlett Publishers. p. 365. ISBN978-1-934015-09-4.
^Herman, Russell L. (2013). A Course in Mathematical Methods for Physicists. CRC Press. p. 42. ISBN978-1-4665-8467-9.
^Wouwer, Alain Vande; Saucez, Philippe; Vilas, Carlos (2014). Simulation of ODE/PDE Models with MATLAB, Octave and Scilab: Scientific and Engineering Applications. Springer. pp. 114–115. ISBN978-3-319-06790-2.
^"FreeMat". freemat.sourceforge.net. Retrieved 22 February 2020.