Mercurial > hg > octave-lyh
annotate ROADMAP @ 11449:93b8c7ca211f
isa.m: Add tests against logical types
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Wed, 05 Jan 2011 21:21:37 -0800 |
parents | d909c4c14b63 |
children | 3c323dde0f85 |
rev | line source |
---|---|
2330 | 1 Here is an attempt at a simple explanation of the directory layout for |
2 Octave's source files. | |
3 | |
6812 | 4 dlfcn -- dlopen, dlsym, dlerror, and dlclose for AIX |
5 | |
2330 | 6 doc -- Texinfo documentation for Octave |
7 | |
8 emacs -- Emacs lisp stuff | |
9 | |
2484 | 10 examples -- some example files |
11 | |
2330 | 12 libcruft -- various numerical libraries (mostly Fortran) |
6812 | 13 amos * bessel functions |
2330 | 14 blas * basic linear algebra subroutines |
6812 | 15 blas-xtra * wrappers for blas functions used in Octave |
16 daspk * large scale differential algebraic equation solver | |
17 dasrt * differential algebraic equation solver with root finding | |
2330 | 18 dassl * differential-algebraic system solver |
19 fftpack * subroutines for fast fourier transforms | |
20 lapack * linear algebra package | |
6812 | 21 lapack-xtra * wrappers for lapack functions used in Octave |
2330 | 22 minpack * nonlinear equation solver |
23 misc * miscellaneous utilities | |
24 odepack * odinary differential equation solver | |
3185 | 25 ordered-qz * code for ordering eigenvalues for QZ factorization |
2330 | 26 quadpack * subroutines for numerical integration |
27 ranlib * random number generators | |
6812 | 28 slatec-err * slatec error handling library |
2330 | 29 slatec-fn * various special function subroutines |
30 | |
2484 | 31 liboctave -- the C++ interfaces to the numerical libraries and |
6812 | 32 various OS facilities |
2330 | 33 |
34 scripts -- functions written in the Octave language | |
2484 | 35 audio * play and record sound files (system dependent) |
2330 | 36 control * control theory |
6812 | 37 deprecated * older deprecated functions |
2484 | 38 elfun * elementary mathematical functions |
6812 | 39 finance * financial functions |
2330 | 40 general * utility functions |
2484 | 41 image * image processing |
42 io * input/output functions | |
43 linear-algebra * linear algebra stuff | |
44 miscellaneous * stuff that doesn't fit anywhere else | |
6812 | 45 optimization * optimizers |
46 path * functions for path handling | |
47 pkg * the package manager | |
2330 | 48 plot * plotting |
49 polynomial * polynomial manipulation | |
6812 | 50 quaternion * quaternions |
2484 | 51 set * set manipulation |
2330 | 52 signal * signal processing |
6812 | 53 sparse * sparse matrix support |
2330 | 54 specfun * special mathematical functions |
55 special-matrix * functions for generating special types of matrices | |
56 startup * initialization functions | |
2484 | 57 statistics * statistical stuff |
2330 | 58 strings * character string manipulation |
6812 | 59 testfun * unit testing |
2330 | 60 time * time and date functions |
61 | |
62 src -- the interpreter itself | |
63 | |
64 test -- tests for the interpreter | |
65 config * configuration files for DejaGnu | |
9031
1052a66078cf
Documentation cleanup of top-level Octave directory (READMEs, INSTALL)
Rik <rdrider0-list@yahoo.com>
parents:
7089
diff
changeset
|
66 octave.test * subdirectories containing actual tests are here |
2330 | 67 |
68 | |
69 John W. Eaton | |
9322 | 70 jwe@octave.org |
7089 | 71 |
72 Last updated: Wed, 31 Oct 2007 16:44:04 EDT |