1. 31b18be * masked_where : force a consistency check on the shapes of the inputs by pierregm · 17 years ago
  2. 70ed0f2 ran reindent by Jarrod Millman · 17 years ago
  3. 0bdef19 * core : minor doc formatting by pierregm · 17 years ago
  4. 469c4d3 core by pierregm · 17 years ago
  5. db14896 * MaskedArray.__new__: prevents self._optinfo to be overwritten (it's defined w/ the call to .view) by pierregm · 17 years ago
  6. 127d6ed * added cov and corrcoef to ma.extras for compatibility by pierregm · 17 years ago
  7. 6647bf7 Merge from documentation editor. by Stefan van der Walt · 17 years ago
  8. af071cf * extras: fixed the definition of median by pierregm · 17 years ago
  9. 84dbd03 core by pierregm · 17 years ago
  10. c3de90a core: by pierregm · 17 years ago
  11. 4cd620b BUG: missing import. by Robert Kern · 17 years ago
  12. 98a17e8 * core : prevent ._basedict to be incorrectly propagated by pierregm · 17 years ago
  13. 681aa53 Standardize NumPy import as "import numpy as np". by Alan McIntyre · 17 years ago
  14. 6dd88dc * force the domain to the shape of the other element in DomainedBinaryOperation (bugfix 857) by pierregm · 17 years ago
  15. 75779e8 core: * suppressed the debugging info... by pierregm · 17 years ago
  16. 923ef80 core: by pierregm · 17 years ago
  17. 70e9b49 core: by pierregm · 17 years ago
  18. 7a15553 Undo test of SPARC alignment. by Charles Harris · 17 years ago
  19. 1c82d09 Testing SPARC alignment. by Charles Harris · 17 years ago
  20. f1104f8 * added .torecords(), to convert a masked array to a flexible array with fields '_data' and '_mask' by pierregm · 17 years ago
  21. ab911fc * fixed a pb with printing flexible ndarrays with subdtypes by pierregm · 17 years ago
  22. 4bc3f39 FOR BUILDBOT: More unsavory workarounds for Sparc64. Change back when we've fixed the actual bug. by Robert Kern · 17 years ago
  23. 16146b4 FOR BUILDBOT: Change the test to make sure the double is aligned to a reasonable boundary. It does no harm to the test, but it shouldn't be necessary. However, I need the buildbots to test it out on the Sparc64 platform for me. by Robert Kern · 17 years ago
  24. e2df0c7 testutils * improved check on object/record arrays by pierregm · 17 years ago
  25. 36e0220 Use the implicit "import numpy as np" made available to all doctests instead by Alan McIntyre · 17 years ago
  26. 102cdc2 Reduce numpy's import times by delaying a few time consuming imports to the point of actual use and global instantiations of finfo. Thanks to David Cournapeau for tracking down and fixing the import part of the problem. by Robert Kern · 17 years ago
  27. 6a4e465 Corrected a goof in .reshape() by pierregm · 17 years ago
  28. bc01c96 prevent .reshape to update the whole __dict__ of the result, use ._update_from instead by pierregm · 17 years ago
  29. 662c797 MaskedArray.__new__ : compare data to cls and not to MaskedArray, in case __new__ is called from a subclass by pierregm · 17 years ago
  30. af7f89e Restore old test framework classes. by Alan McIntyre · 17 years ago
  31. d2a19ae * put maximum/minimum_fill_value back in __all__ by pierregm · 17 years ago
  32. 00827d7 fixed dictionary update for compatibility with Python 2.3 by pierregm · 17 years ago
  33. c331857 Switched to use nose to run tests. Added test and bench functions to all modules. by Alan McIntyre · 17 years ago
  34. 5bb7b22 core.MaskedArray.__new__ by pierregm · 17 years ago
  35. c0bdc3a CHANGES: by pierregm · 17 years ago
  36. 3cd9e03 * make_mask_none now accepts a fields argument to construct record-like masks easily by pierregm · 17 years ago
  37. b7ba98c * revamped the functions min/max so that the methods are called by pierregm · 17 years ago
  38. 7996e06 * revamped choose to accept the out and mode keywords by pierregm · 17 years ago
  39. ce51b91 simplified MaskedArray.__setitem__ to fix setting object-ndarray elements by pierregm · 17 years ago
  40. b8cc583 use tempfile.mkstemp for the creation of temporary files by pierregm · 17 years ago
  41. 29175fc core by pierregm · 17 years ago
  42. b547bbf core: by pierregm · 17 years ago
  43. 7e29764 mrecords : Make sure a field shares its mask with the whole array by pierregm · 17 years ago
  44. 47883f9 core : __new__: keep the fill_value of the initializing object by default by pierregm · 17 years ago
  45. e7e2cad test_set_fields: filter out the warning by pierregm · 17 years ago
  46. 9525f46 fixed whitespace w/ reindent by Jarrod Millman · 17 years ago
  47. f5df20e Fix one small error in test(all=1). by Charles Harris · 17 years ago
  48. cd650e6 mrecords : fixed fromarrays when importing only one record by pierregm · 17 years ago
  49. d7c77aa extras : dropped the m prefix in mediff1d, mvander, mpolyfit by pierregm · 17 years ago
  50. e8f2d12 extras: introduced mvander and mpolyfit by pierregm · 17 years ago
  51. b6ef006 Fix reST markup. by Stefan van der Walt · 17 years ago
  52. 45c812d power : fixed a bug when a scalar is the first argument by pierregm · 17 years ago
  53. c2b77e0 core : power : use the quick-and-dirty approach: compute everything and mask afterwards by pierregm · 17 years ago
  54. f9e14d9 core : power : mask all negative values when the exponent (b) doesn't satisfy b==b.astype(int) by pierregm · 17 years ago
  55. c12a094 core : power : mask all negative values when the exponent (b) doesn't satisfy (abs(b-int(b))<np.finfo(float).precision) by pierregm · 17 years ago
  56. 7c99e67 core : prevent power to mask negative values when it should not by pierregm · 17 years ago
  57. 91c6c40 core : force .compressed() to return a type(_baseclass) object (usually a ndarray) by pierregm · 17 years ago
  58. 974b5f5 by pierregm · 17 years ago
  59. 3682f76 core : clean up update_from by pierregm · 17 years ago
  60. 21a7341 core : fixed a bug w/ array((0,0))/0. by pierregm · 17 years ago
  61. ceb4702 removed tests/test_mstat and tests/test_morestats (now available in scipy) by pierregm · 17 years ago
  62. aefed7e suppressed mstats and morestats: the modules are now part of scipy.stats by pierregm · 17 years ago
  63. 1da799e __float__ : raises a TypeError exception for arrays longer than 1 by pierregm · 17 years ago
  64. 462f65a mrecords: clean-up by pierregm · 17 years ago
  65. 8c66331 ran reindent in preparation for the 1.1 release by Jarrod Millman · 17 years ago
  66. 4e8e2b5 Remove R files? by Travis Oliphant · 17 years ago
  67. 8bf74cc core: by pierregm · 17 years ago
  68. 7d51a22 Add docs and examples for financial functions. by Travis Oliphant · 17 years ago
  69. a5574c3 Fix maskedarray's std and var of complex arrays, with test. Add test for ddof. by aarchiba · 17 years ago
  70. 99cbf12 core: by pierregm · 17 years ago
  71. d1e8d75 Documented and tested new behaviour of std and var on complex numbers. Added ddof argument and its documentation to the std and var methods of matrix. Documented ddof for std and var methods of ma. Note that stdu and varu in ma still have the old, peculiar, behaviour for complex values. by aarchiba · 17 years ago
  72. c24510c Add tests for ddof parameter in var/std [patch by Anne Archibald]. by Stefan van der Walt · 17 years ago
  73. 5827ec1 added common_fill_value and set_fill_value in __all__ by pierregm · 17 years ago
  74. b303721 (forgot to get rid of my personal tests... sorry about that) by pierregm · 17 years ago
  75. 3474b70 new methods : round by pierregm · 17 years ago
  76. 1a159d1 Remove broken ma test. by Stefan van der Walt · 17 years ago
  77. 5cb370e core : fixed sort when axis is None by pierregm · 17 years ago
  78. 38ad50e reverted to a proper version of __getitem__ by pierregm · 17 years ago
  79. c70befd - fixed masked_where (bug #703) by pierregm · 17 years ago
  80. d1eeb41 BUG: Python 2.3 compatibility. We cannot use generator expressions in numpy. by Robert Kern · 18 years ago
  81. 62e9949 Add ddof parameter to std and var computations. by Travis Oliphant · 18 years ago
  82. e6f97dc updated API_CHANGES.txt by pierregm · 18 years ago
  83. 4e1fbfd numpy.ma : docs + API_CHANGES.txt updates by pierregm · 18 years ago
  84. 541c0e5 initial port from Moin Moin site by Jarrod Millman · 18 years ago
  85. 16aff17 Add ma for scons build by David Cournapeau · 18 years ago
  86. ce2316f Merge maskedarray branch. by Stefan van der Walt · 18 years ago
  87. a2df3f7 comments cleaning and docstring updates. by pierregm · 18 years ago
  88. 1845fe9 Remove .data comparisons in tests. Fix whitespace. by Stefan van der Walt · 18 years ago
  89. 5bcb91d Ignore DeprecationWarning during testing. by Stefan van der Walt · 18 years ago
  90. 9ed6591 Remove print statement from test. by Stefan van der Walt · 18 years ago
  91. 82b730f maskedarray.core: by pierregm · 18 years ago
  92. 3af7329 maskedarray.core: by pierregm · 18 years ago
  93. c87c162 maskedarray.core: by pierregm · 18 years ago
  94. 52937c9 by pierregm · 18 years ago
  95. fdc9364 core: fixed compress to ensure that a.compress(cond)==a[cond] in most cases by pierregm · 18 years ago
  96. 90f8ba7 ma.core : add the compress method/function by pierregm · 18 years ago
  97. e71a28f Add 'compress'. by Stefan van der Walt · 18 years ago
  98. 1447cc9 Update documentation format. by Stefan van der Walt · 18 years ago
  99. 797fd12 Merge patch fixing mask dimensions on concatenation. by Stefan van der Walt · 18 years ago
  100. 6068062 Fix concatenator usage (patch by Pierre). Change N to np in regression test. by Stefan van der Walt · 18 years ago