1. 9c9f739 Fix kron for multiple-dimensions. kron is defined so tile(b, s) is the same as kron(ones(s,b.dtype), b) by Travis Oliphant · 19 years ago
  2. dbe29f4 Kron is now N-dimensional, so remove rank check. by Stefan van der Walt · 19 years ago
  3. 0d127c8 Add test for insert. by Stefan van der Walt · 19 years ago
  4. a09fa7d Close ticket #328. by Stefan van der Walt · 19 years ago
  5. e518185 Fix kron to be N-dimensional. by Travis Oliphant · 19 years ago
  6. ba6b099 Fix typo in tile. by Stefan van der Walt · 19 years ago
  7. c75bd2d Add tests for tile and fix error. by Travis Oliphant · 19 years ago
  8. 1ff0cd9 Add tile to numpy and move repmat to matlib.py by Travis Oliphant · 19 years ago
  9. fe0b9ed Fix ticket #325 by Travis Oliphant · 19 years ago
  10. 1c88a77 Add tests for tickets #312, #322, for polynomial roots and for setting by Stefan van der Walt · 19 years ago
  11. ee3d027 Fix ticket #323 --- problem with roots all zeros and all zero coefficients. by Travis Oliphant · 19 years ago
  12. c76a2c4 Fix up __array_interface__ getting and depth discovery for scalars. by Travis Oliphant · 19 years ago
  13. c9eba74 Change unique1d's argument name from retindx to return_index. by Stefan van der Walt · 19 years ago
  14. 483ce06 Don't copy arrays inside ix_ by Travis Oliphant · 19 years ago
  15. 61fbe0e Sort only once in median. by Stefan van der Walt · 19 years ago
  16. 25b594e Fix back repr of arrays to not have quote unless flexible. by Travis Oliphant · 19 years ago
  17. 46bd2a3 Fix doctests for new dtype by Travis Oliphant · 19 years ago
  18. 6d9195d Fix for #291 by Travis Oliphant · 19 years ago
  19. 310b6d0 Switch order of .put arguments to match the function call. Eliminate .putmask as a method and make it only a function. by Travis Oliphant · 19 years ago
  20. 5453138 Fix docstring for delete. by Stefan van der Walt · 19 years ago
  21. 7a8ebd2 Remove sorted from unique1d. Add testall to test if level > 10. Remove compiler warning. by Travis Oliphant · 19 years ago
  22. 1f0508e Remove UserArray.py and dft sub-package. by Travis Oliphant · 19 years ago
  23. b18173d Add tests to arraysetops for empty arrays. by Stefan van der Walt · 19 years ago
  24. bdadc1b Support empty arrays in setxor1d and setdiff1d. by Stefan van der Walt · 19 years ago
  25. 06db31e Fix unique1d for empty sets. Closes r208. by Stefan van der Walt · 19 years ago
  26. 371f8c6 Add ediff1d support for empty arrays. by Stefan van der Walt · 19 years ago
  27. 8b6db6e Fix ticket #188 by returning the name of the dtype objects for data-type objects without fields or sub-arrays that are in correct byte-order by Travis Oliphant · 19 years ago
  28. f74f1d1 Rename to histogramdd as original author said. by Travis Oliphant · 19 years ago
  29. 69de980 Clean up info(ndarray) by Travis Oliphant · 19 years ago
  30. 5a4affa Don't deprecate c_. Use it as short-hand for a common case by Travis Oliphant · 19 years ago
  31. 41f4504 Fix transpose implementation to work with higher dimensional arrays as well by Travis Oliphant · 19 years ago
  32. d6ce2d7 Fix up r_ so you can specify the minimum number of dimensions to force arrays to and allow alteration of the concatenation axis and whether or not to transpose 1d arrays by Travis Oliphant · 19 years ago
  33. 4e76e00 Add histogramnd and fix histogram2d by Travis Oliphant · 19 years ago
  34. 6359dcc Fix column-stack to not transpose 2-d inputs. Fix iscomplex for strings. Add deprecation warning for c_ by Travis Oliphant · 19 years ago
  35. c268f1d Small fix to the insert document string. Cleanup whitespace. by Charles Harris · 19 years ago
  36. 6332618 Clean-up some un-needed default axes. Fix default axes of ma.sum and ma.product by Travis Oliphant · 19 years ago
  37. 775a47d Add axis arguments to various functions so as not to rely on the defaults. by Travis Oliphant · 19 years ago
  38. ce7a968 Restore un-needed axis arguments by Travis Oliphant · 19 years ago
  39. 936b14b Add axis argument to usages of take by Travis Oliphant · 19 years ago
  40. 527937e Fix sundry errors. by Travis Oliphant · 19 years ago
  41. 0f23250 Merge changes mistakenly added to 1.0b4 tag to the main trunk by Travis Oliphant · 19 years ago
  42. d42af63 Fixes to the deletefrom, insertinto, functions... by Travis Oliphant · 19 years ago
  43. 307b1cf Fix how deletefrom and insertinto handle objects with __array_wrap__ defined. by Travis Oliphant · 19 years ago
  44. 5dd5498 Fix broadcast-copy on fancy set-item. by Travis Oliphant · 19 years ago
  45. c37cfa5 Add deletefrom, insertinto, and appendonto by Travis Oliphant · 19 years ago
  46. 7dd9a56 Added a delete function by Travis Oliphant · 19 years ago
  47. 38fb6d0 Re-factor fix to linspace by Travis Oliphant · 19 years ago
  48. 9737794 Remove usage of FatalError and fix linspace to end at stop if endpoint is True by Travis Oliphant · 19 years ago
  49. 325aad6 Fix-up issubdtype to be more useful by Travis Oliphant · 19 years ago
  50. f77587b Fix Python 2.5 compatibility to work with new b3 release by Travis Oliphant · 19 years ago
  51. 06acb95 Move ctypes-related functions out of top-level by Travis Oliphant · 19 years ago
  52. a06ddf3 Fix ndpointer and add tests from ticket #245 by Travis Oliphant · 19 years ago
  53. 7aa30ae datatype --> dtype in ndpointer and fix logic of from_param checks by Travis Oliphant · 19 years ago
  54. 7168ea1 Allow for type-less ndpointer. by Travis Oliphant · 19 years ago
  55. 3fa71a7 Improve ndpointer to allow shape and flags checking as well. by Travis Oliphant · 19 years ago
  56. eee00f8 Remove _as_parameter_ attribute from arrays and add it to the ctypes object. Create an ndpointer class factory to return classes that check for specific array types. These can be used in argtypes list to ctypes functions. by Travis Oliphant · 19 years ago
  57. 01a0309 Change default axis argument of average and several masked array functions. Move old behaviors to compatibility layer. by Travis Oliphant · 19 years ago
  58. c261b1f by Travis Oliphant · 19 years ago
  59. fec6f08 Fix adding docstrings of digitize, bincount, and add_docstring so it doesn't happen twice. by Travis Oliphant · 19 years ago
  60. db34967 Move source, info, and who to NumPy by Travis Oliphant · 19 years ago
  61. 6983e3f Move converting code by Travis Oliphant · 19 years ago
  62. e292dc4 Fix convertnumericA.py to fix transition from 'b' to 'B' by Travis Oliphant · 19 years ago
  63. d372798 Move location of flatnonzero by Travis Oliphant · 19 years ago
  64. 3457ac3 Fix uses of nonzero and add flatnonzero by Travis Oliphant · 19 years ago
  65. 9d98d9d Add back dft stub and alter warning. by Travis Oliphant · 19 years ago
  66. 06ad634 Add back a compatibility UserArray. by Travis Oliphant · 19 years ago
  67. f1cca04 Many name-changes in oldnumeric. This may break some numpy code that was using the oldnumeric interface. by Travis Oliphant · 19 years ago
  68. 8f26568 Change axis=0 to axis=None to be consistent with methods and move axis=0 functions to oldnumeric by Travis Oliphant · 19 years ago
  69. a904655 Convert so that axis arguments are consistent for methods and functions. Place functions for which this changes the Numeric default into oldnumeric. by Travis Oliphant · 19 years ago
  70. 77187d2 Format docstrings to be consistent with others. by Stefan van der Walt · 19 years ago
  71. a1e9a90 Add diagflat. Begin to add numarray compatibility by Travis Oliphant · 19 years ago
  72. 0c7be2c Fix longdouble machar problem (iterations too low) by Travis Oliphant · 19 years ago
  73. 7d50c63 Fix ticket #216. Also fix uses of DATA_RENEW so that object arrays will raise an error instead of possibly memory-leak when reference counts aren't freed. Fix uses of longlong to Py_ssize_t and apppropriate FORMAT string. by Travis Oliphant · 19 years ago
  74. e4c823d Py_OptimizeFlag is available from Python.h by Travis Oliphant · 19 years ago
  75. 4b9387a Don't add docstrings in add_newdoc if run with -OO by Travis Oliphant · 19 years ago
  76. 02926b0 numpy.lib.getlimits: replace typecodes with dtypes by cookedm · 19 years ago
  77. 39bd37d numpy.lib.machar: replace 'while 1' loops with 'for _ in max_iter' by cookedm · 19 years ago
  78. 4bba31c Back to 0.9.9 version by Travis Oliphant · 19 years ago
  79. ec6d062 Make version number 0.9.9 until 1.0 comes out by Travis Oliphant · 19 years ago
  80. e116574 Fix-up convertcode and CAPI docs by Travis Oliphant · 19 years ago
  81. ee4083f Fixed a memory-leak in EnsureArray. Added __array_priority__ to array scalars. Added bug-fixes part of david huard's histogramdd ticket. by Travis Oliphant · 19 years ago
  82. 622701d Clean up docstrings. by Travis Oliphant · 19 years ago
  83. 5083166 Apply patch for unique from #154 by Travis Oliphant · 19 years ago
  84. d5a13c5 add some more docstrings by cookedm · 19 years ago
  85. 10943b6 Replace ScipyTestCase with NumpyTestCase by cookedm · 19 years ago
  86. de0ac34 convertcode: replace ArrayType, NewAxis, and typecode = by cookedm · 19 years ago
  87. eb9f5f7 Remove global symbols from numpy. Remove use of replacetypechars in convertcode. by Travis Oliphant · 19 years ago
  88. a345bd2 Fix .choose docstring and allow more functions to be 'vectorized' by Travis Oliphant · 19 years ago
  89. b4ca1e1 replace some bare except:'s by cookedm · 19 years ago
  90. 36c839a Add simple get_numarray_include() function and typedefs for completeness by Travis Oliphant · 19 years ago
  91. 1acf453 Apply npy_ and NPY_ prefixes to all C-API names that don't already have PyArray_ prefixes. by Travis Oliphant · 19 years ago
  92. 6dc0d80 Add docstring for bincount. by Stefan van der Walt · 19 years ago
  93. be3e208 Patch from David Huard to future-proof histogram2d test by cookedm · 19 years ago
  94. 216f071 Fix UserArray. by Travis Oliphant · 19 years ago
  95. 823ca7e In meshgrid, use views on the input parameters to avoid changing their by Stefan van der Walt · 19 years ago
  96. 8027438 default dtype conversion by sasha · 19 years ago
  97. dbee46a Change the name to ctypes_load_library by Travis Oliphant · 19 years ago
  98. 7a90a21 Add a require function, a issubdtype, and a load_ctypes_function to NumPy by Travis Oliphant · 19 years ago
  99. c00b400 Improve c_numpy.pxd a bit. Re-name get_numpy_include() to get_include() and deprecate old name. Add PyArray_ZEROS and PyArray_EMPTY macros which take type-number instead of data-type object. by Travis Oliphant · 19 years ago
  100. b803061 Adjust histogram2d a bit. Fix doc for logspace. by Travis Oliphant · 19 years ago