annotate Announce @ 2695:8721d278f2e9

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