GNU Octave

Revision as of 19:00, 12 May 2025 by imported>Tayste (rv)
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

Template:Short description {{#invoke:other uses|otheruses}} {{#invoke:Infobox|infobox}}Template:Template other{{#invoke:Check for unknown parameters | check | showblankpositional=1 | unknown = Template:Main other | preview = Page using Template:Infobox software with unknown parameter "_VALUE_"|ignoreblank=y | AsOf | author | background | bodystyle | caption | collapsetext | collapsible | developer | discontinued | engine | engines | genre | included with | language | language count | language footnote | latest preview date | latest preview version | latest release date | latest release version | latest_preview_date | latest_preview_version | latest_release_date | latest_release_version | licence | license | logo | logo alt | logo caption | logo upright | logo size | logo title | logo_alt | logo_caption | logo_upright | logo_size | logo_title | middleware | module | name | operating system | operating_system | other_names | platform | programming language | programming_language | released | replaced_by | replaces | repo | screenshot | screenshot alt | screenshot upright | screenshot size | screenshot title | screenshot_alt | screenshot_upright | screenshot_size | screenshot_title | service_name | size | standard | title | ver layout | website | qid }}Template:Main other 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.

HistoryEdit

The project was conceived around 1988.<ref name="Octave_about">{{#invoke:citation/CS1|citation |CitationClass=web }}</ref> 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.<ref name=":0">{{#invoke:citation/CS1|citation |CitationClass=web }}</ref>

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.<ref name="about">{{#invoke:citation/CS1|citation |CitationClass=web }}</ref>

Development historyEdit

Time Action
1988/1989 1st discussions (Book and Software)
February 1992 Start of Development
January 1993 News in Web (Version 0.60)
February 1994 citation CitationClass=web

}}</ref>

December 1996 2nd Publication (Version 2.0.x) with Windows Port (Cygwin)<ref>{{#invoke:citation/CS1|citation CitationClass=web

}}</ref>

December 2007 citation CitationClass=web

}}</ref>

29 May 2015 Version 4.0.0 (stable GUI and new Syntax for OOP)<ref name="auto">{{#invoke:citation/CS1|citation CitationClass=web

}}</ref><ref>{{#invoke:citation/CS1|citation

CitationClass=web

}}</ref><ref>{{#invoke:citation/CS1|citation

CitationClass=web

}}</ref><ref>{{#invoke:citation/CS1|citation

CitationClass=web

}}</ref>

1 March 2019 citation CitationClass=web

}}</ref>

26 November 2020 citation CitationClass=web

}}</ref>

6 April 2022 citation CitationClass=web

}}</ref>

7 March 2023 citation CitationClass=web

}}</ref>

14 March 2024 citation CitationClass=web

}}</ref>

7 June 2024 citation CitationClass=web

}}</ref>

DevelopmentsEdit

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.<ref>{{#invoke:citation/CS1|citation |CitationClass=web }}</ref>

Acceleration with OpenCL or CUDA is also possible with use of GPUs.<ref>{{#invoke:citation/CS1|citation |CitationClass=web }}</ref>

Technical detailsEdit

Octave, the languageEdit

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.<ref>{{#invoke:citation/CS1|citation |CitationClass=web }}</ref> However, it does not support passing arguments by reference<ref>{{#invoke:citation/CS1|citation |CitationClass=web }}</ref> 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.<ref>{{#invoke:citation/CS1|citation |CitationClass=web }}</ref>

Its syntax is very similar to MATLAB, and careful programming of a script will allow it to run on both Octave and MATLAB.<ref>{{#invoke:citation/CS1|citation |CitationClass=web }}</ref>

Because Octave is made available under the GNU General Public License, it may be freely changed, copied and used.<ref name="about" /> The program runs on Microsoft Windows and most Unix and Unix-like operating systems, including Linux, Android, and macOS.<ref>{{#invoke:citation/CS1|citation |CitationClass=web }}</ref><ref>{{#invoke:citation/CS1|citation |CitationClass=web }}</ref><ref>{{#invoke:citation/CS1|citation |CitationClass=web }}</ref>

Notable featuresEdit

Command and variable name completionEdit

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.<ref>{{#invoke:citation/CS1|citation |CitationClass=web }}</ref>

Command historyEdit

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

Data structuresEdit

Octave includes a limited amount of support for organizing data in structures. In this example, we see a structure Template:Mono with elements Template:Mono, Template:Mono, and Template:Mono, (an integer, an array, and a string, respectively): <syntaxhighlight lang="octave"> octave:1> x.a = 1; x.b = [1, 2; 3, 4]; 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 =

 scalar structure containing the fields:
   a = 1
   b =
      1   2
      3   4
   c = string

</syntaxhighlight>

Short-circuit Boolean operatorsEdit

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 operatorsEdit

{{#invoke:Labelled list hatnote|labelledList|Main article|Main articles|Main page|Main pages}} 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-protectEdit

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: <syntaxhighlight lang="octave"> unwind_protect

  body

unwind_protect_cleanup

  cleanup

end_unwind_protect </syntaxhighlight>

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): <syntaxhighlight lang="matlab"> try

  body

catch

  exception_handling

end </syntaxhighlight>

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 listsEdit

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.

<syntaxhighlight lang="octave"> function s = plus (varargin)

  if (nargin==0)
     s = 0;
  else
     s = varargin{1} + plus (varargin{2:nargin});
  end

end </syntaxhighlight>

Variable-length return listsEdit

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

<syntaxhighlight lang="octave"> function varargout = multiassign (data)

  for k=1:nargout
     varargout{k} = data(:,k);
  end

end </syntaxhighlight>

C++ integrationEdit

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]): <syntaxhighlight lang="cpp">

  1. include <octave/oct.h>

... 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()); </syntaxhighlight>

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

Template:Anchor MATLAB compatibilityEdit

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 Terms of use prohibit any usage beside MathWorks' proprietary MATLAB.<ref>{{#invoke:citation/CS1|citation |CitationClass=web }}</ref><ref>{{#invoke:citation/CS1|citation |CitationClass=web }}</ref><ref>{{#invoke:citation/CS1|citation |CitationClass=web }}</ref>

Syntax compatibilityEdit

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

  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 double-quote " character as well as the single-quote ' character;
  5. 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;
  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 (similar to do-while in C).

Function compatibilityEdit

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 Template:Webarchive.

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: <syntaxhighlight lang="octave">

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

</syntaxhighlight>

User interfacesEdit

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,<ref name="auto1">{{#invoke:citation/CS1|citation |CitationClass=web }}</ref> and has become the default interface (over the command-line interface) with the release of Octave 4.0.<ref name="auto"/> 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.<ref>{{#invoke:citation/CS1|citation |CitationClass=web }}</ref>

Several 3rd-party graphical front-ends have also been developed, like ToolboX for coding education.

GUI applicationsEdit

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<syntaxhighlight lang="octave">

  1. create figure and panel on it

f = figure;

  1. create a button (default style)

b1 = uicontrol (f, "string", "A Button", "position",[10 10 150 40]);

  1. create an edit control

e1 = uicontrol (f, "style", "edit", "string", "editable text", "position",[10 60 300 40]);

  1. create a checkbox

c1 = uicontrol (f, "style", "checkbox", "string", "a checkbox", "position",[10 120 150 40]); </syntaxhighlight>Textbox<syntaxhighlight lang="octave"> prompt = {"Width", "Height", "Depth"}; defaults = {"1.10", "2.20", "3.30"}; rowscols = [1,10; 2,20; 3,30]; dims = inputdlg (prompt, "Enter Box Dimensions", rowscols, defaults); </syntaxhighlight>Listbox with message boxes.<syntaxhighlight lang="octave"> my_options = {"An item", "another", "yet another"}; [sel, ok] = listdlg ("ListString", my_options, "SelectionMode", "Multiple"); if (ok == 1)

 msgbox ("You selected:");
 for i = 1:numel (sel)
   msgbox (sprintf ("\t%s", my_options{sel(i)}));
 endfor

else

 msgbox ("You cancelled.");

endif </syntaxhighlight>Radiobuttons<syntaxhighlight lang="octave">

  1. create figure and panel on it

f = figure;

  1. create a button group

gp = uibuttongroup (f, "Position", [ 0 0.5 1 1])

  1. create a buttons in the group

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 ]);

  1. create a button not in the group

b3 = uicontrol (f, "style", "radiobutton","string", "Not in the group","Position", [ 10 50 100 50 ]); </syntaxhighlight>

PackagesEdit

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 softwareEdit

Alternatives to GNU Octave under an open source license, other than the aforementioned MATLAB, include Scilab and FreeMat.<ref name="Trappenberg2010">Template:Cite book</ref><ref name="MuhammadZalizniak2011">Template:Cite book</ref><ref name="MegreyMoksness2008">Template:Cite book</ref><ref name="Kapuno2008">Template:Cite book</ref> Octave is more compatible with MATLAB than Scilab is,<ref name="Trappenberg2010"/><ref name="Herman2013">Template:Cite book</ref><ref name="WouwerSaucez2014">Template:Cite book</ref> and FreeMat has not been updated since June 2013.<ref>{{#invoke:citation/CS1|citation |CitationClass=web }}</ref>

Also the Julia programming language and its plotting capabilities has similarities with GNU Octave.

See alsoEdit

Template:Portal

NotesEdit

Template:Notelist

ReferencesEdit

Template:Reflist

Further readingEdit

External linksEdit

Template:Sister project Template:Sister project

Template:GNU Template:Numerical analysis software Template:Statistical software Template:Image processing software Template:FOSS Template:Authority control