summaryrefslogtreecommitdiff
path: root/numpy/fft/fftpack.py
Commit message (Collapse)AuthorAgeFilesLines
* BUG: correct norm='ortho' scaling for rfft when n != NoneGregory R. Lee2017-01-041-1/+3
| | | | closes #8444
* DOC: Correct documentation of hfft/ihfft.Charles Harris2016-11-041-28/+33
| | | | | | | | | Corrections to #7492. Correct the examples in the notes specifying the output length for the hfft. Also clean up the documentation a bit. [ci skip]
* Dropping dict like behavior and relying on explicit methods.Lion Krischer2016-06-081-14/+8
|
* BUG: Fix race condition with new FFT cacheLion Krischer2016-06-071-5/+12
| | | | | | There is now a lock around cache accesses ensuring thread safety. The size of a cache entry is now also calculated by summing over all arrays in the list.
* ENH: Changing FFT cache to a bounded LRU cacheLion Krischer2016-06-061-2/+3
| | | | | | | | Replaces the simple dictionary caches for the twiddle factors of numpy.fft to bounded LRU (least recently used) caches. The caches can thus no longer grow without bounds. See #7686.
* DOC: fix a number of reST formatting issues in docstrings.Ralf Gommers2016-02-131-8/+22
|
* BUG:Should fix astype cast bug in numpy.fft moduleTushar Gautam2016-01-191-1/+1
| | | | Closes #6693
* DOC: Clarify documentation for np.fft.ifft.Charles Harris2015-12-181-8/+12
| | | | | The relationship between frequency and position in the input array is clarified.
* Fix #6798Phaiax2015-12-181-2/+4
|
* ENH: Add a norm keyword and tests for fft transformsJoseph Martinot-Lagarde2015-06-211-39/+111
|
* MAINT: fft: np.asarray(...) -> array(...)alex2015-06-021-9/+8
|
* MAINT: in fft, make copying more explicitalex2015-05-291-7/+14
|
* MAINT: remove unnecessary helper functionalex2015-05-291-13/+9
|
* MAINT: explicit fft copyalex2015-05-221-14/+12
|
* STY: minor PEP8 fixups for numpy/fft.Charles Harris2014-07-311-1/+1
|
* Docs: fix numpy.fft.fft2 exampleFrederik Rietdijk2014-05-241-5/+10
| | | | | | Fixes issue #4736 The example showed a call to np.fft.fft instead of np.fft.fft2.
* Add comments to clarify cache handling in _raw_fftAlex Stewart2014-05-061-0/+8
|
* Fix for #4655: Make fftpack._raw_fft threadsafeAlex Stewart2014-05-021-3/+3
|
* DOC: fixed small whitespace error in rfft notesArun Persaud2014-02-081-1/+1
|
* DOC: Unlink non-variable 'm', use monospace insteadendolith2013-08-301-3/+3
|
* DOC: Remove parentheses around axisendolith2013-08-291-18/+18
|
* DOC: change "Hermite" to "Hermitian", "though" to "although"endolith2013-08-291-5/+5
|
* DOC: Add examples, copy some text from rfft functions to clarify inputs and ↵endolith2013-08-221-12/+49
| | | | outputs
* DOC: hfft/ihfft description conflicts with itselfendolith2013-08-211-6/+6
| | | Says Hermite spectrum when it means signal
* STY: Giant comma spacing fixup.Charles Harris2013-08-181-9/+9
| | | | | | | Run the 2to3 ws_comma fixer on *.py files. Some lines are now too long and will need to be broken at some point. OTOH, some lines were already too long and need to be broken at some point. Now seems as good a time as any to do this with open PRs at a minimum.
* STY: Giant whitespace cleanup.Charles Harris2013-08-181-6/+6
| | | | Now is as good a time as any with open PR's at a low.
* 2to3: Apply `print` fixer.Charles Harris2013-04-061-1/+1
| | | | | | | Add `print_function` to all `from __future__ import ...` statements and use the python3 print function syntax everywhere. Closes #3078.
* 2to3: Use absolute imports.Charles Harris2013-03-281-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The new import `absolute_import` is added the `from __future__ import` statement and The 2to3 `import` fixer is run to make the imports compatible. There are several things that need to be dealt with to make this work. 1) Files meant to be run as scripts run in a different environment than files imported as part of a package, and so changes to those files need to be skipped. The affected script files are: * all setup.py files * numpy/core/code_generators/generate_umath.py * numpy/core/code_generators/generate_numpy_api.py * numpy/core/code_generators/generate_ufunc_api.py 2) Some imported modules are not available as they are created during the build process and consequently 2to3 is unable to handle them correctly. Files that import those modules need a bit of extra work. The affected files are: * core/__init__.py, * core/numeric.py, * core/_internal.py, * core/arrayprint.py, * core/fromnumeric.py, * numpy/__init__.py, * lib/npyio.py, * lib/function_base.py, * fft/fftpack.py, * random/__init__.py Closes #3172
* 2to3: Replace xrange by range and use list(range(...)) where neededCharles Harris2013-03-271-2/+2
| | | | | | | | | | | | | | | In python3 range is an iterator and `xrange` has been removed. This has two consequence for code: 1) Where a list is needed `list(range(...))` must be used. 2) `xrange` must be replaced by `range` Both of these changes also work in python2 and this patch makes both. There are three places fixed that do not need it, but I left them in so that the result would be `xrange` clean. Closes #3092
* 2to3: Put `from __future__ import division in every python file.Charles Harris2013-03-011-0/+2
| | | | | | | | This should be harmless, as we already are division clean. However, placement of this import takes some care. In the future a script can be used to append new features without worry, at least until such time as it exceeds a single line. Having that ability will make it easier to deal with absolute imports and printing updates.
* DOC: Reword "Hermite symmetry", clarify units of sample spacingendolith2012-11-261-2/+1
|
* DOC: Clarify the frequencies of the rfft using fs, borrowing text from ↵endolith2012-11-241-6/+8
| | | | numpy.fft docstring
* DOC: Clarify size of odd-length FFTs, default `d` for fftfreq, and some PEP8 ↵endolith2012-10-131-3/+4
| | | | style fixes
* BUG: Fix bug in irfftn.Henry Gomersall2012-03-051-1/+1
|
* STY: Update exception style, easy ones.Charles Harris2011-04-051-1/+1
|
* DEP: remove deprecated names in fftpack.rgommers2011-03-111-11/+1
|
* Remove un-necessary import.Travis Oliphant2010-01-151-1/+0
|
* fixed a whole bunch of doctestsPaul Ivanov2009-12-281-2/+7
|
* first set of checkins from the doc editorJarrod Millman2009-11-131-10/+14
|
* Docstring update: fftPauli Virtanen2009-10-021-234/+231
|
* Merge from doc wikiPauli Virtanen2009-06-191-2/+0
|
* Fix errors in examples in docstringsPauli Virtanen2009-06-021-1/+1
|
* Merge from the doc wikiPauli Virtanen2009-03-241-141/+713
|
* Import documentation from doc wiki (part 2, work-in-progress docstrings, but ↵Pauli Virtanen2008-10-281-55/+58
| | | | they are still an improvement)
* Merge from documentation editor.Stefan van der Walt2008-08-051-58/+277
|
* using identity testing for NoneJarrod Millman2007-11-261-8/+10
|
* Whitespace cleanup.Stefan van der Walt2007-01-081-1/+1
|
* Refuse to compute FFT for invalid number of data points.Stefan van der Walt2006-11-201-0/+2
|
* Refer to "length of a" instead of "a" in fftpack docstrings.Stefan van der Walt2006-09-221-16/+17
|
* Clean-up some un-needed default axes. Fix default axes of ma.sum and ma.productTravis Oliphant2006-08-291-1/+1
|