summaryrefslogtreecommitdiff
path: root/numpy/lib
AgeCommit message (Expand)AuthorFilesLines
2017-03-21TST: Prove that poly1d coeffs are immutableEric Wieser2-3/+16
2017-03-21Merge pull request #8788 from eric-wieser/poly1d-fixes-fixesCharles Harris1-1/+11
2017-03-21BUG: Prevent modification of coefficientsEric Wieser1-1/+1
2017-03-21BUG: Fix regression in scipy that relied on quirky behaviourEric Wieser1-0/+10
2017-03-21DOC: Include np. prefix in meshgrid examplesEgor Klenin1-5/+5
2017-03-14Merge pull request #8762 from eric-wieser/poly1d-fixesCharles Harris2-29/+54
2017-03-09DEP: Deprecate copying random properties in __init__Eric Wieser1-2/+9
2017-03-09MAINT: Remove weird __setattr__ logic emulating propertiesEric Wieser1-27/+32
2017-03-09BUG: Prevent crash in poly1d.__eq__Eric Wieser2-0/+13
2017-03-08Merge pull request #8750 from warut-vijit/masterEric Wieser2-1/+8
2017-03-07BUG: Fix np.average with object array weightsDuke Vijitbenjaronk2-1/+8
2017-03-07BUG: Make MaskedArray.argsort and MaskedArray.sort consistentEric Wieser1-0/+12
2017-03-06DOC: expand_dims and squeeze are inversesEric Wieser1-0/+2
2017-02-26DOC: Fixed small mistakes in numpy.copy documentation.Michael Seifert1-68/+68
2017-02-25Merge pull request #8685 from eric-wieser/shape-to-ndimJulian Taylor7-17/+17
2017-02-24Merge pull request #8688 from madphysicist/patch-1Charles Harris1-1/+8
2017-02-24DOC: Added note to np.diffJoseph Fox-Rabinovitz1-1/+8
2017-02-24MAINT: Fix use of Python 2.6 deprecated escape sequences.Charles Harris1-2/+2
2017-02-24MAINT: replace len(x.shape) with x.ndimEric Wieser7-17/+17
2017-02-24Merge pull request #8646 from joshloyal/enh-inplace-nan_to_numEric Wieser2-2/+19
2017-02-23Merge pull request #8677 from eric-wieser/use-izip_longestJulian Taylor1-13/+9
2017-02-23MAINT: We can now rely on itertools.izip_longest existingEric Wieser1-13/+9
2017-02-22Merge pull request #8668 from flying-sheep/patch-1Eric Wieser1-2/+9
2017-02-22DOC: Added “See Also” section for c_Philipp A1-2/+5
2017-02-22DOC: Added more common example for np.c_Philipp A1-0/+4
2017-02-22ENH: gradient support for unevenly spaced dataAlessandro Pietro Bardelli2-126/+398
2017-02-20MAINT: Be specific about where AxisError is raisedEric Wieser1-2/+2
2017-02-20MAINT: Use normalize_axis_index in all python axis checkingEric Wieser2-15/+7
2017-02-20ENH: Allow for an in-place nan_to_num conversion. Fixes #8634Joshua Loyal2-2/+19
2017-02-19Merge pull request #8638 from juliantaylor/packbits-fixCharles Harris1-0/+9
2017-02-19Merge pull request #8633 from MSeifert04/boolean_arrays_in_ix__funcEric Wieser1-1/+14
2017-02-19Merge pull request #8631 from anntzer/fill_diagonal-typoEric Wieser1-2/+2
2017-02-19BUG: fix wrong odd determination in packbitsJulian Taylor1-0/+9
2017-02-18DOC: Fix typo in fill_diagonal docstring.Antony Lee1-2/+2
2017-02-18DOC: Mention boolean arrays in the ix_ documentation.Michael Seifert1-1/+14
2017-02-18Merge pull request #8614 from eric-wieser/apply_along_axis-emptyMarten van Kerkwijk2-1/+23
2017-02-14Merge pull request #8617 from eric-wieser/fix-8561Marten van Kerkwijk4-12/+19
2017-02-13BUG: The broadcast shape of no things should be (), not ValueErrorEric Wieser2-2/+2
2017-02-13BUG: Copy meshgrid after broadcasting, fixing #8561Eric Wieser2-10/+17
2017-02-13BUG: Don't leak internal exceptions when given an empty arrayEric Wieser2-1/+23
2017-02-12DOC: Indicate that axis param to average may be a tuple of ints.Alex Rothberg1-3/+10
2017-02-12Revert "DOC: gradient uses 1st order central difference in the interior"Alessandro Pietro Bardelli1-3/+3
2017-02-11Merge pull request #8441 from eric-wieser/apply_along_axis-ndStephan Hoyer2-68/+157
2017-02-11DOC: gradient uses 1st order central difference in the interior (#8605)drabach1-3/+3
2017-02-11MAINT: Improve error-checking of axis argumentEric Wieser1-3/+2
2017-02-11TST: Verify apply_along_axis now works on masked arraysEric Wieser1-0/+14
2017-02-11MAINT: Transpose the result, rather than working with a transposed viewEric Wieser1-23/+34
2017-02-11BUG: Work around evil matrix.__array_prepare__Eric Wieser2-4/+15
2017-02-11BUG: Call __array_prepare__ before __array_wrap__Eric Wieser1-1/+4
2017-02-11MAINT: Use np.ndindex, which seems just as efficientEric Wieser1-18/+8