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