Support RETURN-FROM in DEF%TR forms
[maxima.git] / share / numericalio / README
bloba31865adf9e11a0329444bc32c25a6bb48869d00
1  README: Maxima numericalio
3  Robert Dodier 
4  robert_dodier@users.sourceforge.net
5  2004/01/29
7  TOC
9  0. Known bugs
10  1. Manifest
11  2. Instructions
12  3. Description
15  0. Known bugs are:
17     - numericalio doesn't gracefully handle file system errors
18       (path component does not exist, permissions problems, etc.)
20     - return values are not consistent; should consistently return
21       true or some object for success and false for failure
23     - empty sublist in nested list should yield an empty line,
24       but nothing (not even an empty line) is printed
27  1. Files in this package are:
29  README                        -- this document
31  numericalio.lisp              -- numericalio functions
33  is_equal_array.lisp           -- scripts and data for testing
34  my_flatten.mac
35  ragged.mac
36  ragged.data
37  rectangular.mac
38  rectangular.data
39  array.mac
40  array.data
41  csv.mac
42  rectangular.csv
43  really-csv.data
44  really-space-separated.csv
47  2. To use numericalio:
49  (C1) load("numericalio.lisp")$
51  To execute the test scripts:
53  (C1) batchload("ragged.mac")$
54  (C2) batchload("rectangular.mac")$
55  (C3) batchload("array.mac")$
56  (C4) batchload("csv.mac")$
58  Test scripts assume the current working directory is writable.
61  3. For a description of functions, see: numericalio.lisp
62  The header comment describes the functions.