GNU Octave Wiki: Difference between revisions

From Octave
Jump to navigation Jump to search
(Remove redundant links for Installation in the development section. Some tidy up.)
(12 intermediate revisions by 3 users not shown)
Line 3: Line 3:
== [[:Category:Installation|Installing]] ==
== [[:Category:Installation|Installing]] ==


* Get installers and sources from http://octave.org/download
* Get installers and sources from https://www.octave.org/download
** [[Octave_for_MacOS_X#Installing_a_Mac_OS_X_Bundle|Beta installer for macOS]]
** [[Octave for macOS|macOS installation instructions]]
** [[Octave for GNU/Linux|GNU/Linux installation instructions]] and for [[Octave for other Unix systems|other Unix systems]]
** [[Octave for GNU/Linux|GNU/Linux installation instructions]] and for [[Octave for other Unix systems|other Unix systems]]
** [[Octave_for_Microsoft_Windows|Microsoft Windows installation instructions]]
** [[Octave_for_Microsoft_Windows|Microsoft Windows installation instructions]]
Line 13: Line 13:
Are you using an old version of Octave?  Check the [[Release History]] page to see how old it is.
Are you using an old version of Octave?  Check the [[Release History]] page to see how old it is.


== News ==
== [https://www.gnu.org/software/octave/news.html News] ==
 
* '''[[OctConf_2018|OctConf 2018]]''' at CERN


* {{Release Date}} '''GNU Octave {{Release}}''' has been released (see above)!
* {{Release Date}} '''GNU Octave {{Release}}''' has been released (see above)!


* GNU Octave mentors four students at the [https://summerofcode.withgoogle.com/organizations/6259279704096768/ Google Summer of Code 2017].
* GNU Octave is a mentor organization for [https://summerofcode.withgoogle.com/organizations/4797252556554240/ Google Summer of Code 2018]. Congratulations to our [[Summer_of_Code#GSoC_2018|three students]] for being elected and happy coding this summer!


== Getting help with GNU Octave ==
== Getting help ==


* Read the [https://www.gnu.org/software/octave/doc/interpreter GNU Octave documentation]
* Read the [https://www.gnu.org/software/octave/doc/interpreter GNU Octave documentation]
Line 27: Line 25:
* Continue reading this wiki and feel free to add further content (please check that it is not already part of, or belongs in, the documentation and read the [[Contribution guidelines]]).
* Continue reading this wiki and feel free to add further content (please check that it is not already part of, or belongs in, the documentation and read the [[Contribution guidelines]]).
* [https://www.gnu.org/software/octave/support.html Other support options]
* [https://www.gnu.org/software/octave/support.html Other support options]
== [[Using Octave|Getting started]] ==
* [[Publications using Octave#Books|Books]]
* [[Video tutorials|Videos]]
* [https://bagustris.github.io/octave-tutorial Short course]
<br>
<br>


Line 40: Line 44:
* [[Creating packages]]
* [[Creating packages]]


==== [[Octave-Forge]] ====
==== [[Octave Forge]] ====
 
See also the list of Forge Wiki pages: [[:Category:Octave-Forge]]


See also the list of Forge Wiki pages: [[:Category:Octave Forge]]
* [[Arduino_package|arduino package]] Control arduino devices from Octave
* [[bim_package|bim package]] Solve Partial Differential Equations with a Finite Element method
* [[bim_package|bim package]] Solve Partial Differential Equations with a Finite Element method
* [[Control_package|Control package]]
* [[Control_package|Control package]]
Line 70: Line 74:
* [[sci_cosim|Scilab co-simulation package]]
* [[sci_cosim|Scilab co-simulation package]]
* [[Zeromq_package|Zeromq package]] Zeromq bindings for Octave.
* [[Zeromq_package|Zeromq package]] Zeromq bindings for Octave.
=== [[:Category:Editors|Editors]] ===
* [[Gedit]]
* [[Emacs]]
* [[Nano]]
* [[Vim]]
* [[Kate]]
* [http://octclipse.sourceforge.net Octclipse] (Windows and GNU/Linux only.  The Octclipse developers are seeking individuals to assist with macOS support.)
* [https://sites.google.com/site/domainmathide/ DomainMath IDE] (Windows, GNU/Linux and macOS.)
* [https://bitbucket.org/jgpallero/octave-sh GNU Octave syntax highlight files] (Syntax highlight definitions for some editors. Contributions are welcome)


=== [[:Category:Resources|Tutorials/Examples]] ===
=== [[:Category:Resources|Tutorials/Examples]] ===


* [[Using Octave]] - For those just getting started.
* [[Octave Basics]] - A short reference card to get started.
* [[Octave Basics]] - A short reference card to get started.
* [https://staff.ti.bfh.ch/sha1/Labs/PWF/Documentation/OctaveAtBFH.pdf Octave introduction script]
* [[:Category:Plotting tutorials|Plotting tutorials]]
* [[Tips and tricks]] - Guidelines to improve your coding skills.
* [[Tips and tricks]] - Guidelines to improve your coding skills.
* [[Cookbook]] - Several simple and useful examples.
* [[Cookbook]] - Several simple and useful examples.
Line 91: Line 84:
* [[Fortran]] - Accessing liboctave from a Fortran 2003 program.
* [[Fortran]] - Accessing liboctave from a Fortran 2003 program.
* [[Octave fun]] - Coding can be fun -- miscellaneous more or less funny scripts
* [[Octave fun]] - Coding can be fun -- miscellaneous more or less funny scripts
* [[Video tutorials]]
* [[:Category:Plotting tutorials|Plotting tutorials]]
* [http://www.amiq.com/consulting/2014/11/21/how-to-connect-systemverilog-with-octave/ How to Connect SystemVerilog with Octave]
* [http://www.amiq.com/consulting/2014/11/21/how-to-connect-systemverilog-with-octave/ How to Connect SystemVerilog with Octave]
* [https://bagustris.github.io/octave-tutorial Octave programming]
 


=== [[:Category:Development|Development]] ===
=== [[:Category:Development|Development]] ===
Line 103: Line 94:
* [[Doxygen]] - Internal C++ code documentation
* [[Doxygen]] - Internal C++ code documentation
* [[International Characters Support]] - Using Octave in your own language.
* [[International Characters Support]] - Using Octave in your own language.
* [[4.2.0 Release Checklist]] ([[Bug Fix List - 4.2.0 Release|Bug Fix List]])
* [[:Category:Editors|Editors]] - A list of editors supporting Octave syntax highlighting.
* [[4.4.0 Release Checklist]]


==== [[:Category:Building|Building]] ====
==== [[:Category:Building|Building]] ====

Revision as of 16:08, 4 September 2018

GNU Octave is a high-level interpreted language, primarily intended for numerical computations. It provides capabilities for the numerical solution of linear and nonlinear problems, and for performing other numerical experiments. It also provides extensive graphics capabilities for data visualization and manipulation. GNU Octave is normally used through its interactive interface (CLI and GUI), but it can also be used to write non-interactive programs. The GNU Octave language is quite similar to Matlab so that most programs are easily portable.

Installing

Info icon.svg
GNU Octave 9.1.0 is the current stable release

Are you using an old version of Octave? Check the Release History page to see how old it is.

News

  • March 14, 2024 GNU Octave 9.1.0 has been released (see above)!

Getting help

Getting started


Advanced topics

Below is a temporary attempt to organize the "most wanted" pages of the Wiki. A list of all pages on the wiki can be seen here. To locate something specific, try the wiki's search box, or prepend site:wiki.octave.org to a Google search. Please read the Contribution guidelines first, if you want to contribute to this Wiki.

Packages

Octave Forge

See also the list of Forge Wiki pages: Category:Octave Forge

Tutorials/Examples


Development

Find a longer list of relevant links for developers at the Developers page.

Building

Testing

Packaging

Academia

Project Ideas

External Links