summaryrefslogtreecommitdiff
path: root/numpy/lib/stride_tricks.py
Commit message (Expand)AuthorAgeFilesLines
* ENH: Support for changing dtype in non-C-contiguous viewsJoseph R. Fox-Rabinovitz2022-01-051-0/+1
* DOC: broadcast_to() supports int as shape parameterTim Hoffmann2021-07-091-2/+3
* MAINT: Do not override `sliding_window_view` module to `numpy`Sebastian Berg2020-11-061-1/+1
* API: Do not import sliding_window_view to main namespaceSebastian Berg2020-11-051-12/+11
* ENH: Implement sliding window (gh-17394)Klaus Zimmermann2020-11-051-1/+227
* ENH: add function to get broadcast shape from a given set of shapes. (#17535)madhulikajc2020-10-171-2/+57
* MAINT: Implement keyword-only arguments as syntaxEric Wieser2020-01-061-6/+2
* MAINT: Remove implicit inheritance from object class (#15236)Jon Dufresne2020-01-051-1/+1
* MAINT: Remove unnecessary 'from __future__ import ...' statementsJon Dufresne2020-01-031-2/+0
* ENH: Deprecate writeable broadcast_array (#12609)Matti Picus2019-06-281-9/+14
* ENH: Allow broadcast to be called with zero argumentsEric Wieser2019-05-121-2/+0
* MAINT: set preferred __module__ for numpy functionsStephan Hoyer2018-10-231-2/+2
* ENH: __array_function__ support for np.lib, part 2/2 (#12119)Stephan Hoyer2018-10-221-0/+11
* TST: add broadcast_arrays() kwarg unit test for TypeErrorTyler Reddy2018-08-011-1/+1
* DOC: Change array lengths/entries in an example to reduce confusion.Paul van Mulbregt2018-06-141-9/+5
* ENH: add NpyIter_Close, nditer__{enter,exit}__mattip2018-04-201-2/+5
* BUG: have as_strided() keep custom dtypesAntoine Pitrou2017-05-241-4/+3
* BUG: The broadcast shape of no things should be (), not ValueErrorEric Wieser2017-02-131-1/+1
* BUG: Fix TypeError when raising TypeErrorEric Wieser2016-05-081-1/+1
* DOC: fix typoSamuel St-Jean2016-03-091-1/+1
* DOC: Add documentation for as_stridedSebastian Berg2016-02-131-3/+62
* ENH: allow single input argument in numpy.broadcastHolger Kohr2016-01-041-3/+0
* BUG: error in broadcast_arrays with as_strided arrayStephan Hoyer2015-10-241-3/+6
* BUG: fix _broadcast_shape (and broadcast_array) for len(args) > 32Stephan Hoyer2015-05-151-0/+4
* DOC: note versionadded for broadcast_toEric Moore2015-05-061-0/+4
* Merge pull request #5519 from jaimefrio/array_interface_dtypeCharles Harris2015-03-121-2/+4
|\
| * ENH: PyArray_FromInterface checks descr if typestr is np.voidjaimefrio2015-03-081-2/+4
* | BUG: fix broadcast_to for reference typesStephan Hoyer2015-03-011-3/+3
|/
* ENH: add broadcast_to functionStephan Hoyer2015-02-261-55/+104
* Convert as_strided input to array firstMarten van Kerkwijk2014-08-271-4/+8
* ENH: add subok flag to stride_tricks (and thus broadcast_arrays)Marten van Kerkwijk2014-08-251-5/+19
* STY: Make files in numpy/lib PEP8 compliant.Charles Harris2014-07-311-10/+12
* Fix stride_stricks.as_strided function for object arraysJay Bourque2014-02-261-1/+2
* STY: Giant comma spacing fixup.Charles Harris2013-08-181-1/+1
* Fix issue with broadcast_arrays() and user defined dtypesJay Bourque2013-05-101-1/+4
* 2to3: Apply `map` fixer.Charles Harris2013-04-101-2/+2
* 2to3: Apply `print` fixer.Charles Harris2013-04-061-1/+1
* 2to3: Use absolute imports.Charles Harris2013-03-281-1/+1
* 2to3: Put `from __future__ import division in every python file.Charles Harris2013-03-011-0/+2
* DOC: wiki merge, twodim_base and a few loose ones.rgommers2010-07-311-5/+5
* Docstring update: libPauli Virtanen2009-10-021-1/+6
* ran reindentJarrod Millman2008-08-081-2/+1
* Merge from documentation editor.Stefan van der Walt2008-08-051-2/+4
* ENH: Add broadcast_arrays() function to expose broadcasting to pure Python fu...Robert Kern2008-07-031-0/+109