summaryrefslogtreecommitdiff
path: root/math/newmat
AgeCommit message (Collapse)AuthorFilesLines
2009-06-14Convert @exec/@unexec to @pkgdir or drop it.joerg1-3/+1
2009-06-14Remove @dirrm entries from PLISTsjoerg1-3/+1
2009-03-17Correct email address for generic MAINTAINER.darcy1-2/+2
2009-01-23Give up maintainership, as I have not so much as looked at pkgsrc injschauma1-2/+2
well over a year now. Sorry. :-(
2008-03-04Mechanical changes to add DESTDIR support to packages that installjlam1-6/+8
their files via a custom do-install target.
2006-09-09Rename variable MAKEFILE to MAKE_FILE.obache1-2/+2
2006-06-01Uses C++.joerg1-1/+2
2005-06-17Create directories before installing files into them.jlam1-1/+3
2005-04-16Distfiles with the same name but differentwiz2-5/+6
contents need a DIST_SUBDIR -- make it so for the newmat10B case.
2005-04-15distfile changed on master site; now known as newmat10B (but no suchjschauma2-6/+7
distfile) Changes since newmat10A are mostly cosmetic with minor bugfixes.
2005-02-23Add RMD160 digests in addition to SHA1 ones.agc1-1/+2
2004-12-03Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs.wiz1-2/+2
Suggested by Roland Illig, ok'd by various.
2004-04-25Unused.wiz1-19/+0
2004-01-20Move WRKSRC definition away from the first paragraph in a Makefile.agc1-2/+2
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-03-29Place WRKSRC where it belongs, to make pkglint happy; ok'ed by wiz.jmmv1-2/+2
2002-10-16Initial import of math/newmat into pkgsrc:jschauma6-0/+103
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.