Mercurial > hg > octave-nkf
annotate README @ 14026:3781981be535 ss-3-5-90
snapshot 3.5.90
* configure.ac (AC_INIT): Version is now 3.5.90.
(OCTAVE_API_VERSION_NUMBER): Now 46.
(OCTAVE_RELEASE_DATE): Now 2011-12-11.
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Sun, 11 Dec 2011 23:18:31 -0500 |
parents | b67c2d580a25 |
children | 72c96de7a403 |
rev | line source |
---|---|
2993 | 1 GNU Octave -- a high-level language for numerical computations. |
2330 | 2 |
11523 | 3 Copyright (C) 1996-2011 John W. Eaton |
2330 | 4 |
5 Overview | |
6 -------- | |
7 | |
2993 | 8 GNU Octave is a high-level language, primarily intended for numerical |
2330 | 9 computations. It provides a convenient command line interface for |
10 solving linear and nonlinear problems numerically. | |
11 | |
2993 | 12 GNU Octave is free software; you can redistribute it and/or modify it |
2330 | 13 under the terms of the GNU General Public License as published by the |
7016 | 14 Free Software Foundation; either version 3 of the License, or (at your |
15 option) any later version. | |
2330 | 16 |
2993 | 17 GNU Octave is distributed in the hope that it will be useful, but |
18 WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the file | |
20 COPYING for more details. | |
2330 | 21 |
22 Availability | |
23 ------------ | |
24 | |
25 The latest released version of Octave is always available via | |
8922 | 26 anonymous ftp from ftp.gnu.org and its many mirror sites around the |
27 world. You may also find links to binary distributions at | |
28 http://www.octave.org/download.html. The current development sources | |
11453
780a8b80c3e8
README: Update WWW links and disk space requirements.
Rik <octave@nomad.inbox5.com>
parents:
9031
diff
changeset
|
29 may be found on Savannah (http://savannah.gnu.org/projects/octave) |
780a8b80c3e8
README: Update WWW links and disk space requirements.
Rik <octave@nomad.inbox5.com>
parents:
9031
diff
changeset
|
30 under the Source Code tab. |
2330 | 31 |
11453
780a8b80c3e8
README: Update WWW links and disk space requirements.
Rik <octave@nomad.inbox5.com>
parents:
9031
diff
changeset
|
32 Installation |
780a8b80c3e8
README: Update WWW links and disk space requirements.
Rik <octave@nomad.inbox5.com>
parents:
9031
diff
changeset
|
33 ------------ |
2330 | 34 |
11453
780a8b80c3e8
README: Update WWW links and disk space requirements.
Rik <octave@nomad.inbox5.com>
parents:
9031
diff
changeset
|
35 Octave requires approximately 1.4 GB of disk storage to unpack and |
780a8b80c3e8
README: Update WWW links and disk space requirements.
Rik <octave@nomad.inbox5.com>
parents:
9031
diff
changeset
|
36 compile from source (significantly less, 400 MB, if you don't compile |
780a8b80c3e8
README: Update WWW links and disk space requirements.
Rik <octave@nomad.inbox5.com>
parents:
9031
diff
changeset
|
37 with debugging symbols). Once installed, Octave requires |
780a8b80c3e8
README: Update WWW links and disk space requirements.
Rik <octave@nomad.inbox5.com>
parents:
9031
diff
changeset
|
38 approximately 350MB of disk space (again, considerably less, 70 MB, |
780a8b80c3e8
README: Update WWW links and disk space requirements.
Rik <octave@nomad.inbox5.com>
parents:
9031
diff
changeset
|
39 if you don't build shared libraries or the binaries and libraries do |
780a8b80c3e8
README: Update WWW links and disk space requirements.
Rik <octave@nomad.inbox5.com>
parents:
9031
diff
changeset
|
40 not include debugging symbols). |
2484 | 41 |
3148 | 42 To compile Octave, you will need a recent version of GNU Make. You |
9031
1052a66078cf
Documentation cleanup of top-level Octave directory (READMEs, INSTALL)
Rik <rdrider0-list@yahoo.com>
parents:
8922
diff
changeset
|
43 will also need a recent version of g++ or another ANSI C++ compiler. |
7088 | 44 You will also need a Fortran 77 compiler or f2c. If you use f2c, you |
45 will need a script like fort77 that works like a normal Fortran | |
46 compiler by combining f2c with your C compiler in a single script. | |
2330 | 47 |
48 YOU MUST HAVE GNU MAKE TO COMPILE OCTAVE. Octave's Makefiles use | |
2484 | 49 features of GNU Make that are not present in other versions of make. |
2330 | 50 GNU Make is very portable and easy to install. |
51 | |
12733
b67c2d580a25
maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
52 See the notes in the files INSTALL and the system-specific README files |
b67c2d580a25
maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
53 in the etc directory of the Octave source distribution for more specific |
b67c2d580a25
maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
54 installation instructions. |
2330 | 55 |
11453
780a8b80c3e8
README: Update WWW links and disk space requirements.
Rik <octave@nomad.inbox5.com>
parents:
9031
diff
changeset
|
56 Bugs and Patches |
780a8b80c3e8
README: Update WWW links and disk space requirements.
Rik <octave@nomad.inbox5.com>
parents:
9031
diff
changeset
|
57 ---------------- |
780a8b80c3e8
README: Update WWW links and disk space requirements.
Rik <octave@nomad.inbox5.com>
parents:
9031
diff
changeset
|
58 |
780a8b80c3e8
README: Update WWW links and disk space requirements.
Rik <octave@nomad.inbox5.com>
parents:
9031
diff
changeset
|
59 The file BUGS explains the recommended procedure for reporting bugs |
780a8b80c3e8
README: Update WWW links and disk space requirements.
Rik <octave@nomad.inbox5.com>
parents:
9031
diff
changeset
|
60 or contributing patches. |
2330 | 61 |
2580 | 62 Documentation |
63 ------------- | |
2330 | 64 |
11453
780a8b80c3e8
README: Update WWW links and disk space requirements.
Rik <octave@nomad.inbox5.com>
parents:
9031
diff
changeset
|
65 Octave's manual has been revised for version 3.4, but it is lagging a |
2580 | 66 bit behind the development of the software. In particular, there is |
7088 | 67 currently no complete documentation of the C++ class libraries. If |
11453
780a8b80c3e8
README: Update WWW links and disk space requirements.
Rik <octave@nomad.inbox5.com>
parents:
9031
diff
changeset
|
68 you notice omissions or inconsistencies, please report them on the |
780a8b80c3e8
README: Update WWW links and disk space requirements.
Rik <octave@nomad.inbox5.com>
parents:
9031
diff
changeset
|
69 bug tracker at http://savannah.gnu.org/bugs/?group=octave. Specific |
780a8b80c3e8
README: Update WWW links and disk space requirements.
Rik <octave@nomad.inbox5.com>
parents:
9031
diff
changeset
|
70 suggestions for ways to improve Octave and its documentation are |
780a8b80c3e8
README: Update WWW links and disk space requirements.
Rik <octave@nomad.inbox5.com>
parents:
9031
diff
changeset
|
71 always welcome. Reports with patches are even more welcome. |
2330 | 72 |
2582 | 73 Additional Information |
74 ---------------------- | |
75 | |
76 Up to date information about Octave is available on the WWW at the | |
7088 | 77 URL http://www.octave.org, including archives of the help, bug, and |
78 maintainers mailing lists. | |
2582 | 79 |
7088 | 80 |
12733
b67c2d580a25
maint: clean up top-level directory
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
81 Last updated: Fri, 10 Jun 2011 14:02:32 EDT |