File: README

package info (click to toggle)
octave 10.3.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 145,484 kB
  • sloc: cpp: 335,976; ansic: 82,241; fortran: 20,963; objc: 9,402; sh: 8,756; yacc: 4,392; lex: 4,333; perl: 1,544; java: 1,366; awk: 1,259; makefile: 660; xml: 192
file content (51 lines) | stat: -rw-r--r-- 1,531 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
* penny data file:

  See the discussion here:
  https://savannah.gnu.org/patch/?func=detailitem&item_id=8472

* west0479 data file:

  Chemical engineering plant models Eight stage column section, all
  rigorous from set CHEMWEST, from the Harwell-Boeing Collection.

  west0479.mtx: original file obtained from from
  https://math.nist.gov/MatrixMarket/data/Harwell-Boeing/chemwest/west0479.html

  west0479.mat: generated from west0479.mtx as follows:

    x = load ("west0479.mtx");
    nr = x(1,1);
    nc = x(1,2);
    i = x(2:end,1);
    j = x(2:end,2);
    sv = x(2:end,3);
    west0479 = sparse(i, j, sv, nr, nc);
    save -text west0479.mat west0479

  Note that the original file has 1910 entries but 22 of them are exact
  zeros:

    384 86  0.0000000000000e+00
    360 116  0.0000000000000e+00
    361 117  0.0000000000000e+00
    362 118  0.0000000000000e+00
    238 224  0.0000000000000e+00
    239 225  0.0000000000000e+00
    240 226  0.0000000000000e+00
    250 240  0.0000000000000e+00
    251 241  0.0000000000000e+00
    252 242  0.0000000000000e+00
    272 259  0.0000000000000e+00
    273 260  0.0000000000000e+00
    274 261  0.0000000000000e+00
    294 278  0.0000000000000e+00
    295 279  0.0000000000000e+00
    296 280  0.0000000000000e+00
    316 297  0.0000000000000e+00
    317 298  0.0000000000000e+00
    318 299  0.0000000000000e+00
    338 316  0.0000000000000e+00
    339 317  0.0000000000000e+00
    340 318  0.0000000000000e+00

  These are not explicitly included in the west0479.mat file.