GNU Octave

From Wikipedia, the free encyclopedia

(Redirected from Octave (language))
Jump to: navigation, search
For other uses of the word octave see Octave (disambiguation)
GNU Octave

GNU Octave
Maintainer John W. Eaton
Stable release 3.0.0  (December 21, 2007) [+/-]
Preview release 3.0.0  (December 21, 2007) [+/-]
OS Cross-platform
Use Scientific computing
License GNU General Public License
Website http://www.octave.org/

Octave is a free computer program for performing numerical computations which is mostly compatible with MATLAB. It is part of the GNU project.

Contents

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 3.0 was released on December 21, 2007.

The name has nothing to do with musical octaves. Octave is the name of a former professor of one of the early authors of Octave who was known for his ability to quickly come up with good approximations to numerical problems.

  • Octave is written in C++ using STL libraries.
  • Octave has an interpreter that interprets the Octave language.
  • Octave itself is extensible using dynamically loadable modules.
  • Octave interpreter works in tandem with gnuplot and Grace software to create plots, graphs, and charts, and to save or print them.

The Octave language is an interpreted programming language. It is a structured programming language (an example of which is the C language) and supports many common C standard library constructs, and can be extended to support UNIX system calls and functions. However, it does not support passing arguments by reference.

Octave programs consist of a list of function calls or script. The language is matrix-based and provides various functions for matrix operation. It is not object-oriented, but supports data structures.

Its syntax is very similar to MATLAB, and carefully programming 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 copied and used. The program runs under most Unix and Unix-like operating systems, as well as Microsoft Windows.

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. For instance:

octave:1> x.a = 1; x.b = [1, 2; 3, 4]; x.c = "string";
octave:2> x.a
x.a = 1
octave:3> x.b
x.b =

  1  2
  3  4

octave:4> x.c
x.c = string
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.

Unwind-protect

Octave supports a limited form of exception handling modeled after the unwind-protect form of Lisp. The general form of an unwind_protect block looks like this:

unwind_protect
  body
unwind_protect_cleanup
  cleanup
end_unwind_protect
Variable-length argument lists

Octave has a real 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.

function s = plus (varargin)
  if (nargin==0)
    s = 0;
  else
    s = varargin{1} + plus (varargin{2:nargin});
  endif
endfunction
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 (data)
  for k=1:nargout
    varargout{k} = data(:,k);
  endfor
endfunction

Octave has been built with MATLAB compatibility in mind. It therefore 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.

Wikimedia Commons has media related to:
Wikibooks
Wikibooks has a book on the topic of


Advanced Search
Included Web Search Engines


Safe Search

close

Top Matching Results

Occasionally Search.com will highlight specialized results that are based on the context of your query. Examples of specialized results include specific links to news, images, or video.

Top Matching Results may highlight information from other Search.com pages, content from the CNET Network of sites, or third party content. The listings are based purely on relevance. Search.com does not receive payment for listings in this section but our partners that provide this data may get paid for listing these products.

Sponsored Links

This section contains paid listings which have been purchased by companies that want to have their sites appear for specific search terms and related content. These listings are administered, sorted and maintained by a third party and are not endorsed by Search.com.

Search Results

Search.com sends your search query to several search engines at one time and integrates the results into one list which has been sorted by relevance using Search.com's proprietary algorithm. You can customize the list of search engines included in your metasearch from the preferences.

The search engines that are used in your metasearch may allow companies to pay to have their Web sites included within the results. To view the Paid Inclusion policy for a specific search engine, please visit their Web site. Search.com does not accept payment or share revenue with any search engine partner for listings in this section.