GNU Octave | |
Developer: | John W. Eaton and many others[1] |
Released: | (first alpha release) (version 1.0)[2] |
Programming Language: | C++ (main), Octave itself (scripts), C (wrapper code), Fortran (linear algebra wrapper code)[3] |
Operating System: | Windows, macOS, Linux, BSD |
Language Count: | 18 |
Language Footnote: | [4] |
Genre: | Scientific computing |
License: | 2007: GPL-3.0-or-later 1992: GPL-2.0-or-later |
GNU Octave is a scientific programming language for scientific computing and numerical computation. 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. As part of the GNU Project, it is free software under the terms of the GNU General Public License.
The project was conceived around 1988.[5] 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 8.4.0 was released on 5 November 2023.[6]
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.[7]
Time | Action | |
---|---|---|
1988/1989 | 1st discussions (Book and Software) | |
February 1992 | Start of Development | |
January 1993 | News in Web (Version 0.60) | |
February 1994 | 1st Publication (Version 1.0.0 to 1.1.1)[8] | |
December 1996 | 2nd Publication (Version 2.0.x) with Windows Port (Cygwin)[9] | |
December 2007 | Publication of Version 3.0 (Milestone)[10] | |
29 May 2015 | Version 4.0.0 (stable GUI and new Syntax for OOP)[11] [12] [13] [14] | |
1 March 2019 | Publication of Octave 5.1.0 (QT5 preferred, Qt 4.8 minimum), hiDpi support[15] | |
26 November 2020 | Publication of Octave 6.1.0 (QT5 preferred, Qt 4.x deprecated for remove in 7)[16] | |
6 April 2022 | Publication of Octave 7.1.0 (QT5 preferred), improved graphics backend and matlab compatibility[17] | |
7 March 2023 | Publication of Octave 8.1.0, improved graphics backend and matlab compatibility[18] | |
14 March 2024 | Publication of Octave 9.1.0, general, matlab compatibility, and graphics improvements.[19] |
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.[20]
Acceleration with OpenCL or CUDA is also possible with use of GPUs.[21]
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.[22] However, it does not support passing arguments by reference[23] although function arguments are copy-on-write to avoid unnecessary duplication.
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.[24]
Its syntax is very similar to MATLAB, and careful programming of a script will allow it to run on both Octave and MATLAB.[25]
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, Android, and macOS.[26] [27] [28]
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.[29]
When running interactively, Octave saves the commands typed in an internal buffer so that they can be recalled and edited.
Octave includes a limited amount of support for organizing data in structures. In this example, we see a structure with elements,, and, (an integer, an array, and a string, respectively):
1 2 3 4
octave:4> x.cans = stringoctave:5> xx =
scalar structure containing the fields:
a = 1 b =
1 2 3 4
c = string
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 |
.
See main article: 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
.
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''
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):
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).
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.
A function can be set up to return any number of values by using the special return value varargout
. For example:
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])
:
...ColumnVector NumRands(2);NumRands(0) = 10;NumRands(1) = 1;octave_value_list f_arg, f_ret;f_arg(0) = octave_value(NumRands);f_ret = feval("rand", f_arg, 1);Matrix unis(f_ret(0).matrix_value);
C and C++ code can be integrated into GNU Octave by creating oct files, or using the MATLAB compatible MEX files.
Octave has been built with MATLAB compatibility in mind, and shares many features with MATLAB:
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 Terms of use prohibit any usage beside MathWorks' proprietary MATLAB.[30] [31] [32]
There are a few purposeful, albeit minor, syntax additions :
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 online .
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:
Please read
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,[33] and has become the default interface (over the command-line interface) with the release of Octave 4.0.[11] 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.[34]
Several 3rd-party graphical front-ends have also been developed, like ToolboX for coding education.
With Octave code, the user can create GUI applications. See GUI Development (GNU Octave (version 7.1.0)). Below are some examples:
Button, edit control, checkbox
f = figure;
b1 = uicontrol (f, "string", "A Button", "position",[10 10 150 40]);
e1 = uicontrol (f, "style", "edit", "string", "editable text", "position",[10 60 300 40]);
c1 = uicontrol (f, "style", "checkbox", "string", "a checkbox", "position",[10 120 150 40]);Textbox
f = figure;
gp = uibuttongroup (f, "Position", [0 0.5 1 1])
b1 = uicontrol (gp, "style", "radiobutton", "string", "Choice 1", "Position", [10 150 100 50 ]);b2 = uicontrol (gp, "style", "radiobutton", "string", "Choice 2", "Position", [10 50 100 30 ]);
b3 = uicontrol (f, "style", "radiobutton","string", "Not in the group","Position", [10 50 100 50 ]);
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.
Other free alternatives to MATLAB include Scilab and FreeMat.[35] [36] [37] [38] Octave is more compatible with MATLAB than Scilab is,[35] [39] [40] and FreeMat has not been updated since June 2013.[41]