# HG changeset patch # User Kai T. Ohlhus # Date 1476373992 -7200 # Node ID 5e297505996cacccb92f96363e8dff389312cae6 # Parent 7d73884411b6ef361263df3deeb784cda5ae36a1 Some minor content changes. diff -r 7d73884411b6 -r 5e297505996c bugs.md --- a/bugs.md Thu Oct 13 17:52:09 2016 +0200 +++ b/bugs.md Thu Oct 13 17:53:12 2016 +0200 @@ -15,16 +15,16 @@

{% octicon stop class:"octicon-stop-octave" %} -Please do not send bug reports to the -help-octave@gnu.org mailing list. -Most users of Octave do not want to receive bug reports. +Please do not send any bug reports to the +help@octave.org mailing list. +Most Octave users do not want to receive bug reports.

{% octicon stop class:"octicon-stop-octave" %} -Before reporting a new bug, read the guidelines below. +Before reporting a new bug, please read the guidelines below.

diff -r 7d73884411b6 -r 5e297505996c download.md --- a/download.md Thu Oct 13 17:52:09 2016 +0200 +++ b/download.md Thu Oct 13 17:53:12 2016 +0200 @@ -1,6 +1,6 @@ --- layout: default -title: Install +title: Download menu: true --- @@ -16,7 +16,7 @@ hg clone http://www.octave.org/hg/octave {% endhighlight %} -More information is given [here]({{ "contribute.html" | relative_url }}). +[More information]({{ "get-involved.html" | relative_url }}). [1]: https://www.mercurial-scm.org @@ -50,6 +50,13 @@ +# Windows + +Windows binaries with corresponding source code can be downloaded from +[https://ftp.gnu.org/gnu/octave/windows/](https://ftp.gnu.org/gnu/octave/windows/). + + + ## BSD Executable versions of Octave for BSD systems are provided @@ -60,9 +67,3 @@ between an Octave source release and the availability of a package for a particular GNU/Linux distribution varies. The Octave project has no control over that process. - - -# Windows - -Windows binaries with corresponding source code can be downloaded from -[https://ftp.gnu.org/gnu/octave/windows/](https://ftp.gnu.org/gnu/octave/windows/). diff -r 7d73884411b6 -r 5e297505996c index.md --- a/index.md Thu Oct 13 17:52:09 2016 +0200 +++ b/index.md Thu Oct 13 17:53:12 2016 +0200 @@ -18,7 +18,7 @@ [1]: http://www.octave.org [2]: http://octave.sourceforge.net/packages.php [3]: https://www.mathworks.com/matlab -[4]: https://www.gnu.org/copyleft/gpl.html +[4]: {{ "license.html" | relative_url }} [screen]: {{ "/img/screenshot-2016.png" | relative_url }} [screen-small]: {{ "/img/screenshot-2016-small.png" | relative_url }} @@ -26,14 +26,19 @@ --- -# [{% octicon rss class:"octicon-rss-octave" %}]({{ "/feed.xml" | relative_url }}) News +# [{% octicon rss class:"octicon-rss-octave" %}][Feed] [News] {% for post in site.posts limit:3 %} - [{{ post.title }}]({{ post.url | relative_url }}) - ({{ post.date | date: "%b %-d, %Y" }}): - {{ post.excerpt | strip_html}} + ({{ post.date | date: "%b %-d, %Y" }}) + +
+ {{ post.excerpt }} +
{% endfor %} +[Feed]: {{ "feed.xml" | relative_url }} +[News]: {{ "news.html" | relative_url }} --- @@ -44,19 +49,25 @@ **vectors** and **matrices**: {% highlight octave %} -b = [4; 9; 2] % Column vector +b = [4; 9; 2]; % Column vector A = [ 3 4 5; 1 3 1; - 3 5 9 ] + 3 5 9 ]; x = A \ b % Solve $Ax = b$ by inverting A {% endhighlight %} - Visualize data with **high-level plot commands** in 2D and 3D: {% highlight octave %} -x = -10:0.1:10 % Create an evenly-spaced vector from -10..10 -y = sin(x) % y is also a vector -plot(x,y) +% Create an evenly-spaced vector from -10 to 10 +x = -10:0.1:10; +y = sin(x); % y is also a vector +plot(x,y); +title("Simple 2-D Plot"); +xlabel("x"); +ylabel("sin (x)"); {% endhighlight %} -![Sine plot]({{ "/img/plot.png" | relative_url }}) +[![Sine plot][plot]][plot] + +[plot]: {{ "/img/plot.png" | relative_url }} diff -r 7d73884411b6 -r 5e297505996c license.md --- a/license.md Thu Oct 13 17:52:09 2016 +0200 +++ b/license.md Thu Oct 13 17:53:12 2016 +0200 @@ -31,4 +31,4 @@ [1]: https://www.gnu.org/copyleft/gpl.html [2]: https://www.fsf.org/ -[3]: contribute.html +[3]: {{ "get-involved.html" | relative_url }}