2638
|
1 Subject: ANNOUNCE: Octave Version 2.0.2 released |
2330
|
2 |
2695
|
3 Octave version 2.0.3 is now available for ftp from ftp.che.wisc.edu |
2604
|
4 in the directory /pub/octave. Diffs from the previous release are |
|
5 also available in the same directory. |
2330
|
6 |
2702
|
7 -rw-r--r-- 1 jwe 3312470 Feb 18 13:08 octave-2.0.3.tar.gz |
|
8 -rw-r--r-- 1 jwe 217812 Feb 18 13:43 octave-2.0.2-2.0.3.patch. |
|
9 |
2638
|
10 In addition to the source distributions, there are binary |
2702
|
11 distributions available for Linux running on Intel systems, OSF/1 |
|
12 running on Alpha systems, and HA-UX 9.x running on HPPA systems. |
|
13 Binary distributions for other platforms will be available from |
|
14 ftp.che.wisc.edu when they are contributed by volunteers. If you |
|
15 would like to help to make a binary distribution available, please |
|
16 contact bug-octave@bevo.che.wisc.edu. |
2638
|
17 |
2695
|
18 Version 2.0.3 is primarily a bug-fixing release. Most bugs reported |
|
19 since the release of version 2.0.2 have been fixed. There are also a |
2638
|
20 few new features, including: |
2330
|
21 |
2695
|
22 * The manual has been completely revised and now corresponds much |
|
23 more closely to the features of the current version. |
|
24 |
|
25 * The return value for assignment expressions is now the RHS since |
|
26 that is more consistent with the way other programming languages |
|
27 work. However, Octave still prints the entire LHS value so that |
|
28 |
|
29 x = zeros (1, 2); |
|
30 x(2) = 1 |
|
31 |
|
32 still prints |
2638
|
33 |
2695
|
34 x = |
|
35 |
|
36 0 1 |
|
37 |
|
38 but an assignment like |
2638
|
39 |
2695
|
40 z = x(2) = 1 |
|
41 |
|
42 sets z to 1 (not [ 0, 1 ] as in previous versions of Octave). |
2638
|
43 |
2695
|
44 * It is now much easier to make binary distributions. See the |
|
45 Binary Distributions section of the manual for more details. |
2638
|
46 |
|
47 |
|
48 You can help make Octave more reliable by reporting any bugs you find |
|
49 to bug-octave@bevo.che.wisc.edu. |
2330
|
50 |
2604
|
51 Octave is a high-level interactive language primarily intended for |
|
52 numerical computations. It is mostly compatible with Matlab. |
2330
|
53 |
2604
|
54 Additional information is available on the WWW at |
2330
|
55 |
2604
|
56 http://www.che.wisc.edu/octave |
2330
|
57 |
2585
|
58 -- |
2330
|
59 John W. Eaton |
|
60 jwe@bevo.che.wisc.edu |
|
61 University of Wisconsin-Madison |
|
62 Department of Chemical Engineering |