Editing Developer FAQ

Jump to navigation Jump to search
Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.

Latest revision Your text
Line 13: Line 13:
== How can I contribute code to Octave? ==
== How can I contribute code to Octave? ==


In general you can contribute code to Octave in form of '''patches (changesets)'''.  Those have to be uploaded to the [https://savannah.gnu.org/bugs/?group=octave bug] or [https://savannah.gnu.org/patch/?group=octave patch] tracker.
If you feel ready to dive right into the code to make some changes, the [[Building]], [[Mercurial]], and [[Contribution guidelines]] wiki pages are a very useful start.


* In [[Building]] is described, how you get and build the latest Octave source code on your system.
== How can I find which file implements a given command? ==
* In [[Mercurial]] we describe, how you create a patch (changeset) from your modifications.
* Our [[Contribution guidelines]] should be read and followed as well, to ensure acceptance of your contribution.
 
== How can I find which source file implements a given command? ==
 
Use Octave's  {{manual|which}} command.
 
=== m-file functions ===


From within Octave, use <code>which</code>:
<syntaxhighlight lang="Octave">
<syntaxhighlight lang="Octave">
>> which help
>> which help
Line 31: Line 24:
   'help' is a function from the file /some/path/m/help/help.m
   'help' is a function from the file /some/path/m/help/help.m


In this case, the desired function is a m-file, one can simply edit it inside the GUI, just type:
If the desired function is a m-file, one can simply edit it inside the GUI, just type:
 
<syntaxhighlight lang="Octave">
<syntaxhighlight lang="Octave">
>> edit help
>> edit help
</syntaxhighlight>
</syntaxhighlight>
=== built-in functions ===


Some functions are already compiled (a.k.a. ''built-in functions''), for example:
Some functions are already compiled (a.k.a. ''built-in functions''), for example:
Line 47: Line 37:
   'addpath' is a built-in function from the file libinterp/corefcn/load-path.cc
   'addpath' is a built-in function from the file libinterp/corefcn/load-path.cc


This function is to be found in Octave's source code, in this case at {{Path|[https://hg.savannah.gnu.org/hgweb/octave/file/b33d4fbce33e/libinterp/corefcn/load-path.cc#l2355 libinterp/corefcn/load-path.cc]}}. Open the respective file with an editor of your choice and search for the pattern "<code> (addpath,</code>".
This function is to be found in Octave's source code, in this case at [https://hg.savannah.gnu.org/hgweb/octave/file/b33d4fbce33e/libinterp/corefcn/load-path.cc#l2355].
 
If the source code is cloned to a local machine, you can edit the repective file and search for something like "<code> (addpath,</code>".


[[Category:Development]]
[[Category:Development]]
[[Category:FAQ]]
[[Category:FAQ]]
Please note that all contributions to Octave may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see Octave:Copyrights for details). Do not submit copyrighted work without permission!

To edit this page, please answer the question that appears below (more info):

Cancel Editing help (opens in new window)

Templates used on this page: