summaryrefslogtreecommitdiff
path: root/math/newmat
AgeCommit message (Collapse)AuthorFilesLines
2016-12-17Don't check pointer sign.joerg2-1/+17
2015-11-03Add SHA512 digests for distfiles for math categoryagc1-1/+2
Problems found locating distfiles: Package dfftpack: missing distfile dfftpack-20001209.tar.gz Package eispack: missing distfile eispack-20001130.tar.gz Package fftpack: missing distfile fftpack-20001130.tar.gz Package linpack: missing distfile linpack-20010510.tar.gz Package minpack: missing distfile minpack-20001130.tar.gz Package odepack: missing distfile odepack-20001130.tar.gz Package py-networkx: missing distfile networkx-1.10.tar.gz Package py-sympy: missing distfile sympy-0.7.6.1.tar.gz Package quadpack: missing distfile quadpack-20001130.tar.gz Otherwise, existing SHA1 digests verified and found to be the same on the machine holding the existing distfiles (morden). All existing SHA1 digests retained for now as an audit trail.
2012-09-11"user-destdir" is default these daysasau1-3/+1
2010-08-11Update to Newmat11asau3-19/+16
Contributed by Kamel Derouiche via PR pkg/43741 Changes in this version: It works with Borland Builder version 6, 8; Microsoft Visual C++ 6,7,8; Open Watcom 1.7a; Gnu version 3, 4 and Intel for Windows & Linux compilers 9, 10. Options and work-arounds for older compilers are being removed. You can enter values from an integer array with statements like Matrix A(3,2); int a[] = { 11,12,21,22,31,33 }; A << a; There is a new matrix type SquareMatrix. You can use this where you know a matrix is square. The only place where the information that a matrix is used is in the Kronecker product KP(A,B). If A is band and B is any square matrix type (i.e. type SquareMatrix or band, triangular, symmetric or diagonal) the result is band. If B is type Matrix then the result is of type Matrix. Apart from this it may be worth using the SquareMatrix type to improve readability of a program and to make sure that a matrix that is intended to be square really is square. There is a new routine for carrying out cross products of ColumnVectors or RowVectors of length 3 and new routines for updating a triangular matrix derived from a Cholesky decomposition. Interfacing with old C functions involving one and two dimensional arrays is simplified. Additional QR functions, extend_orthogonal function. Lower-case versions of functions. You can use the manipulators scientific and fixed in the matrix output expressions.
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.