From c74a2992912c7d36c6f189b8ed196a6ed9bf6c64 Mon Sep 17 00:00:00 2001 From: jschauma Date: Wed, 16 Oct 2002 15:40:33 +0000 Subject: Initial import of math/newmat into pkgsrc: This C++ library is intended for scientists and engineers who need to manipulate a variety of types of matrices using standard matrix operations. Emphasis is on the kind of operations needed in statistical calculations such as least squares, linear equation solve and eigenvalues. It supports matrix types: Matrix (rectangular matrix); UpperTriangularMatrix; LowerTriangularMatrix; DiagonalMatrix; SymmetricMatrix; BandMatrix; UpperBandMatrix; LowerBandMatrix; SymmetricBandMatrix; IdentityMatrix; RowVector; ColumnVector. The library includes the operations *, +, -, *=, +=, -=, Kronecker product, Schur product, concatenation, inverse, transpose, conversion between types, submatrix, determinant, Cholesky decomposition, QR triangularisation, singular value decomposition, eigenvalues of a symmetric matrix, sorting, fast Fourier and trig. transforms, printing and an interface with Numerical Recipes in C. It is intended for matrices in the range 10 x 10 to the maximum size your machine will accommodate in a single array. The package works for very small matrices but becomes rather inefficient. A lazy evaluation approach to evaluating matrix expressions is used to improve efficiency and reduce use of temporary storage. --- math/newmat/PLIST | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 math/newmat/PLIST (limited to 'math/newmat/PLIST') diff --git a/math/newmat/PLIST b/math/newmat/PLIST new file mode 100644 index 00000000000..efb1e62ef00 --- /dev/null +++ b/math/newmat/PLIST @@ -0,0 +1,17 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2002/10/16 15:40:33 jschauma Exp $ +include/newmat/boolean.h +include/newmat/controlw.h +include/newmat/include.h +include/newmat/myexcept.h +include/newmat/newmat.h +include/newmat/newmatap.h +include/newmat/newmatio.h +include/newmat/newmatnl.h +include/newmat/newmatrc.h +include/newmat/precisio.h +lib/libnewmat.a +share/doc/html/newmat/index.html +@dirrm share/doc/html/newmat +@unexec ${RMDIR} share/doc/html 2>/dev/null || ${TRUE} +@unexec ${RMDIR} share/doc 2>/dev/null || ${TRUE} +@dirrm include/newmat -- cgit v1.2.3