summaryrefslogtreecommitdiff
path: root/math/py-Numeric
AgeCommit message (Collapse)AuthorFilesLines
2003-09-14Update to 23.1.recht3-6/+22
changes: Version 23.1 August 2003 [unreported] fixed assignment to matrix. [unreported] added check so that non-character array cannot be interpreted as a character buffer. [unreported] array([m,m,m]) when m is a rank-0 array now works as expected. Patches: [ 782001 ] Add true and floor divide to MA [ 781215 ] true_divide bug [ 776991 ] multiplying small UINT values gives random results [ 776467 ] remove string exceptions
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-06-04delete the PYTHON_VERSIONS_ACCEPTED line - this should lead to the samedrochner1-2/+1
result as the patch in PR pkg/21772 by Marc Recht
2003-04-03update to 23.0drochner3-34/+19
Important notice: Two packages have been removed from optional ones: PropertiedClasses, kinds. MA has been rewritten to use standard property and will not work for ancient Pythons. (Pre 2.1, I think). Use the MA / Propertied Classes from Numeric 22 if you can't use this one. The kinds package (subject of PEP-0242) will be released as a separate package shortly. PEP-0242 was withdrawn because this facility did not seem to be worth putting in the standard library, but kinds is correct as is. Other changes are bugfixes.
2002-10-30Update py-Numeric to version 21.0markd3-41/+41
Fixed bugs: [ #482603 ] Memory leak in MA/Numeric/Python Reported by Reggie Dugard. Turned out to be *two* memory leaks in one case in a routine in Numeric, array_objectype. (Dubois) [ none ] if vals was a null-array array([]) putmask and put would crash. Fixed with check. [ #469951 ] n = n1[0] gives array which shares dimension of n1 array. This causes bugs if shape of n1 is changed (n didn't used to have it's own dimensions array (Travis Oliphant) [ #514588 ] MLab.cov(x,x) != MLab.cov(x) (Travis Oliphant) [ #518702 ] segfault when invalid typecode for asarray (Travis Oliphant) [ #497530 ] MA __getitem__ prevents 0 len arrays (Reggie Duggard) [ #508363 ] outerproduct of noncontiguous arrays (Martin Wiechert) [ #513010 ] memory leak in comparisons (Byran Nollett) [ #512223 ] Character typecode not defined (Jochen Kupper) [ #500784 ] MLab.py diff error (anonymous, fixed by Dubois) [ #503741 ] accuracy of MLab.std(x) (Katsunori Waragai) [ #507568 ] overlapping copy a[2:5] = a[3:6] Change uses of memcpy to memmove which allows overlaps. [ numpy-Patches-499722 ] size of buffer created from array is bad (Michel Sanner). [ #502186 ] a BUG in RandomArray.normal (introduced by last bug fix in 20.3) (Katsunori Waragai). Fixed errors for Mac (Jack Jensen). Make rpm's properly, better Windows installers. (Gerard Vermeulen) Added files setup.cfg; setup calculates rpm_install.sh to use current Python. New setup.py, eliminate setup_all.py. Use os.path.join everywhere. Revision in b6 added file README.RPM, further improvements. Implement true division operations for Python 2.2. (Bruce Sherwood) Note: true division of all integer types results in an array of floats, not doubles. This decision is arbitrary and there are arguments either way, so users of this new feature should be aware that the decision may change in the future. New functions in Numeric; they work on any sequence a that can be converted to a Numeric array. Similar change to average in MA. (Dubois) def rank (a): "Get the rank of a (the number of dimensions, not a matrix rank)" def shape (a): "Get the shape of a" def size (a, axis=None): "Get the number of elements in a, or along a certain axis." def average (a, axis=0, weights=None, returned = 0): Computes average along indicated axis.
2002-10-09Unused.wiz1-6/+0
2002-09-22Use buildlink2.jlam1-1/+3
2002-09-22Follow the guidelines set forth in bsd.buildlink2.mk for making ajlam1-1/+17
buildlink2.mk file. This package installs headers, so we need to define a BUILDLINK_FILES variable for them.
2002-09-21Strip the ".buildlink" from the names of the python application andjlam1-2/+2
extension Makefile fragments, because they really don't have anything to do with the buildlink[12] frameworks. Change all the Makefiles that use application.buildlink.mk and extension.buildlink.mk to use application.mk and extension.mk instead.
2002-08-25Merge changes in packages from the buildlink2 branch that havejlam1-0/+7
buildlink2.mk files back into the main trunk.
2002-01-16fix typodrochner1-2/+2
2002-01-15allow to override the required version just like other buildlink.mks dodrochner1-2/+3
2002-01-15this works with Python-2.2drochner1-2/+2
2002-01-10add a buildlink.mk filedrochner1-0/+5
2002-01-10update to 20.3drochner2-5/+5
changes: Please note that the __future__ options wrt integer division in Python 2.2 are NOT available in Numeric at this time. Incompatible change to functions sum and product in MA. See Packages/MA/changes.txt. Fixed memory leak in divmod [#470058] thanks Reggie Dugard. Added argmax, argmin for byte, unsigned byte [#474241] Fixed bug in RandomArray.normal for default shape. [#482046] To fix bug and correctly accept keyword args, changed fromstring interface to: fromstring(string, typecode="l", count=-1) Applied patch #[ #468068 ] Speedups for small matrices by Gary Bishop. Removed newlines in comment in multiarray. Fixed uninitalized variable in asinh on Windows. Optimization: Moved array_range to C (T. Oliphant) Add coding to setup.py for the BeOs5. (patch #466187, not applied as given) Removed a couple of warning errors in the sea of same produced by gcc's warnall. Fixed bug in arrayfns.histogram (bug #462813) Optional Package Properties 2.2 Allow external handlers in Properties. No check is made any more that the handler is an unbound method of the class. Must have the correct signature, however.
2001-11-01Move pkg/ files into package's toplevel directoryzuntum2-1/+1
2001-10-29use PLIST_SUBST instead of sed, as suggested by Thomas Klausnerdrochner1-66/+66
2001-10-04Move PKGNAME to standard location.wiz1-2/+2
2001-09-25update to 20.2.1drochner1-3/+3
2001-09-25-switch to use the new ../../lang/python/extension.buildlink.mk instead ofdrochner1-4/+5
USE_PYTHON (as a testcase, more or less) -update to 20.2.1, Changes: -bugfixes -Lapack update -Implemented equality and inequality testing for arrays of characters, complex numbers, and objects (T. Oliphant) -In RandomArray.py, improved implementation of internal routine _build_random_array -Removed tabs from MLab.py and RandomArray.py -Improved test in RandomArray
2001-07-11update to 20.1.0drochner3-10/+25
Changes: Version 20.1 MA and kinds rebased on new package Properties (which grew out of the old activeattr.py file previously in MA). Masked arrays can now be pickled. Properties provides a easy-to-use method to have a name act as if it is a attribute of the class but be able to control reading, writing, and deleting of that attribute via methods of the class. Applied patch that fixes errors when Python is pymalloc-enabled (dmcooke). Applied patch to add new support in LinearAlgebra for symmetrical eigenvalue problems. (Allesandro Mirone) Applied patch to fix comparisons to None in MLab.py (jbmoody). Found and fixed another one in RandomArray.py. Applied suggested fix by Mark Hadfield to let setup_all.py work on systems where Python is installed in a directory path that contains a space. Version 20.0 Redo setup.py so that binary windows installers for Numeric, FFT, MA, etc. can be made automatically. Packages LALITE and RANLIB merged back to top level. Adjustment for BLAS in setup.py. Documentation of Numeric module made more compatible with pydoc. argmin/argmax/argsort/sort errors with axis specs fixed (bug #233805) -- also made them capable of handling args that can be converted to arrays by adding an array(a, copy=0) at the start. Fixes sum, product, cumsum, cumproduct, alltrue, sometrue to deal with zero shape and to take arguments that can be converted to arrays. MA: See changes.txt file in MA for bug fixes and improvements. New option for average to return sum of weights. Fix bug in putmask so that it handles targets of type object. Because of reference counting issues this is done in Python, not C, and would not be more efficient than doing your own loop, but we include it for completeness. In Packages add draft implementation for PEP 0242, Numerical Kinds. Add PyArray_CopyArray to the API (Thanks to Dave Grote). Add defines for cygwin. In arrayobject.h, add static declaration to importing API pointer. May solve OS X problems. Fix bug in FFT packages, added new test. (Thanks to Warren Focke) Added __deepcopy__ method equal to __copy__ method. Throws an exception if the target is an array of type 'O'. But this at least allows non-object type arrays to be copy.deepcopied. If someone has time they can do this case.
2001-05-14use USE_PYTHONdrochner2-25/+5
2001-04-19Move to sha1 digests, and add distfile sizes.agc1-1/+2
2001-04-17+ move the distfile digest/checksum value from files/md5 to distinfoagc2-7/+1
+ move the patch digest/checksum values from files/patch-sum to distinfo
2001-04-09remove unnecessary patches. I'm sure I had cvs rm'd them before thedrochner5-74/+0
last commit.
2001-04-09update to 19.0.0drochner3-18/+11
Didn't find a changelog. At least the build glitches are gone.
2001-03-07update to 17.3.0drochner8-5/+92
For a changelog, I didn't find more than: Numeric 17.3.0 is intended to be the last release before adding capabilities supported by Python 2.1. This is a routine catch-up to CVS release.
2001-02-17Update to new COMMENT style: COMMENT var in Makefile instead of pkg/COMMENT.wiz2-2/+2
2001-01-15update to 17.2.0drochner2-5/+5
The announcement: Release 17.2.0 is available in source form. It contains the functions put and putmask, and a performance enhancement. The previous release of this performance enhancement did not compile on certain platforms; this should be fixed now. Also included is a substantial update to the masked array package, MA.
2000-12-05update to work wiyh python 2.x:drochner6-90/+77
-newest version - 17 (new numbering scheme) -hosted by sourceforge now -uses python's new "distutils"
2000-09-05Install missing includes.rh2-2/+11
2000-08-21Update IGNORE-messages for recent changes: add ${PKGNAME} wherehubertf1-2/+2
appropriate.
2000-01-05Strip trailing '.', and/or leading '(a|an) 'abs1-1/+1
1999-07-09Add package patch checksum files.agc1-0/+3
1999-04-17Update for python 1.5.2tsarna1-2/+2
XXX Not updated to latest version. Need to decide if this pkg should be removed in favor of a py-LLNL package, or what.
1998-12-18Re-enable on alphatsarna1-3/+1
1998-09-27Tim tested some of these, but I don't know which. Since at least one oftsarna1-2/+2
the pkgs broke on Alpha that was not expected to, disable them all for the 1.3.3 tag to be on the safe side :-(
1998-09-27Disable on alpha for now, until lossage can be investigated.tsarna1-1/+3
1998-09-22Remove misinformationtsarna1-3/+0
1998-09-22alpha->vax, since Alpha now works for Python dynamicly loaded modules,tsarna1-2/+2
but VAX never has.
1998-08-26Automatically append HOMEPAge to DESCR files, and remove homepage URLstsarna1-3/+0
from individual DESCR files that had them.
1998-08-20The Grand Homepagification:tsarna1-1/+2
- New, optional Makefile variable HOMEPAGE, specifies a URL for the home page of the software if it has one. - The value of HOMEPAGE is used to add a link from the README.html files. - pkglint updated to know about it. The "correct" location for HOMEPAGE in the Makefile is after MAINTAINER, in that same section.
1998-08-07Add NetBSD RCS Ids.agc1-0/+2
1998-07-11Update to 1.3tsarna4-28/+6
1998-05-04Replace "BUILD_DEPENDS" and "RUN_DEPENDS" by "DEPENDS".tron1-3/+2
1998-04-27Remove unnecessary "@dirrm", fixes PR pkg/5366.tron1-2/+1
1998-04-24Move to relative paths in the pkgsrc tree.agc1-3/+3
1998-04-15Use the bsd.pkg.mk and bsd.pkg.subdir.mk files in the pkgsrc tree.agc1-7/+2
Remove redundant (and sometimes erroneous) comments.
1998-04-12Integrate some improvements done by Ty Sarna.tron5-11/+42
1998-04-12Move package to directory for new category "math".tron5-5/+5