aboutsummaryrefslogtreecommitdiff
path: root/math/linalg/pkg-descr
diff options
context:
space:
mode:
authorWill Andrews <will@FreeBSD.org>2000-04-07 01:47:51 +0000
committerWill Andrews <will@FreeBSD.org>2000-04-07 01:47:51 +0000
commita6d989b045799e9f256fc58431202a3f28173f85 (patch)
treeca6ae90dd627c9d292c4a2b594df67a77e136b7a /math/linalg/pkg-descr
parent095e4b4d73852b09fef0ac68d64297ca91275dad (diff)
Notes
Diffstat (limited to 'math/linalg/pkg-descr')
-rw-r--r--math/linalg/pkg-descr19
1 files changed, 19 insertions, 0 deletions
diff --git a/math/linalg/pkg-descr b/math/linalg/pkg-descr
new file mode 100644
index 000000000000..3c017af32ac4
--- /dev/null
+++ b/math/linalg/pkg-descr
@@ -0,0 +1,19 @@
+ LinAlg -- C++ Linear Algebra and Optimization classlib
+
+- Matrix, Vector, subMatrices, and LAStreams over real domain;
+- Matrix inverse, norms, determinant, lazy matrices, Singular Value
+ Decomposition (SVD) and applications, nested functions;
+- Brent's univariate optimization and root finding, Hooke-Jeeves
+ multidimensional optimization of functors, Aitken-Lagrange interpolation;
+- LinAlg stresses Matrix streams, which provide a sequential
+ view/access to a matrix or its parts. LABlockStreams may
+ span over an arbitrary rectangular block of a matrix, including the
+ whole matrix, a single matrix element, and all other block sizes in
+ between. Matrix streams are seekable and subrange-able. A stream or
+ a substream are always created in-line; they do not allocate any
+ heap storage, and are safe.
+- Every feature is extensively tested in the validation code (included).
+
+WWW: http://pobox.com/~oleg/ftp/packages.html
+
+Oleg Kiselyov <oleg@pobox.com>