Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | BUG: correct norm='ortho' scaling for rfft when n != None | Gregory R. Lee | 2017-01-04 | 1 | -1/+3 |
| | | | | closes #8444 | ||||
* | DOC: Correct documentation of hfft/ihfft. | Charles Harris | 2016-11-04 | 1 | -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 Krischer | 2016-06-08 | 1 | -14/+8 |
| | |||||
* | BUG: Fix race condition with new FFT cache | Lion Krischer | 2016-06-07 | 1 | -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 cache | Lion Krischer | 2016-06-06 | 1 | -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 Gommers | 2016-02-13 | 1 | -8/+22 |
| | |||||
* | BUG:Should fix astype cast bug in numpy.fft module | Tushar Gautam | 2016-01-19 | 1 | -1/+1 |
| | | | | Closes #6693 | ||||
* | DOC: Clarify documentation for np.fft.ifft. | Charles Harris | 2015-12-18 | 1 | -8/+12 |
| | | | | | The relationship between frequency and position in the input array is clarified. | ||||
* | Fix #6798 | Phaiax | 2015-12-18 | 1 | -2/+4 |
| | |||||
* | ENH: Add a norm keyword and tests for fft transforms | Joseph Martinot-Lagarde | 2015-06-21 | 1 | -39/+111 |
| | |||||
* | MAINT: fft: np.asarray(...) -> array(...) | alex | 2015-06-02 | 1 | -9/+8 |
| | |||||
* | MAINT: in fft, make copying more explicit | alex | 2015-05-29 | 1 | -7/+14 |
| | |||||
* | MAINT: remove unnecessary helper function | alex | 2015-05-29 | 1 | -13/+9 |
| | |||||
* | MAINT: explicit fft copy | alex | 2015-05-22 | 1 | -14/+12 |
| | |||||
* | STY: minor PEP8 fixups for numpy/fft. | Charles Harris | 2014-07-31 | 1 | -1/+1 |
| | |||||
* | Docs: fix numpy.fft.fft2 example | Frederik Rietdijk | 2014-05-24 | 1 | -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_fft | Alex Stewart | 2014-05-06 | 1 | -0/+8 |
| | |||||
* | Fix for #4655: Make fftpack._raw_fft threadsafe | Alex Stewart | 2014-05-02 | 1 | -3/+3 |
| | |||||
* | DOC: fixed small whitespace error in rfft notes | Arun Persaud | 2014-02-08 | 1 | -1/+1 |
| | |||||
* | DOC: Unlink non-variable 'm', use monospace instead | endolith | 2013-08-30 | 1 | -3/+3 |
| | |||||
* | DOC: Remove parentheses around axis | endolith | 2013-08-29 | 1 | -18/+18 |
| | |||||
* | DOC: change "Hermite" to "Hermitian", "though" to "although" | endolith | 2013-08-29 | 1 | -5/+5 |
| | |||||
* | DOC: Add examples, copy some text from rfft functions to clarify inputs and ↵ | endolith | 2013-08-22 | 1 | -12/+49 |
| | | | | outputs | ||||
* | DOC: hfft/ihfft description conflicts with itself | endolith | 2013-08-21 | 1 | -6/+6 |
| | | | Says Hermite spectrum when it means signal | ||||
* | STY: Giant comma spacing fixup. | Charles Harris | 2013-08-18 | 1 | -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 Harris | 2013-08-18 | 1 | -6/+6 |
| | | | | Now is as good a time as any with open PR's at a low. | ||||
* | 2to3: Apply `print` fixer. | Charles Harris | 2013-04-06 | 1 | -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 Harris | 2013-03-28 | 1 | -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 needed | Charles Harris | 2013-03-27 | 1 | -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 Harris | 2013-03-01 | 1 | -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 spacing | endolith | 2012-11-26 | 1 | -2/+1 |
| | |||||
* | DOC: Clarify the frequencies of the rfft using fs, borrowing text from ↵ | endolith | 2012-11-24 | 1 | -6/+8 |
| | | | | numpy.fft docstring | ||||
* | DOC: Clarify size of odd-length FFTs, default `d` for fftfreq, and some PEP8 ↵ | endolith | 2012-10-13 | 1 | -3/+4 |
| | | | | style fixes | ||||
* | BUG: Fix bug in irfftn. | Henry Gomersall | 2012-03-05 | 1 | -1/+1 |
| | |||||
* | STY: Update exception style, easy ones. | Charles Harris | 2011-04-05 | 1 | -1/+1 |
| | |||||
* | DEP: remove deprecated names in fftpack. | rgommers | 2011-03-11 | 1 | -11/+1 |
| | |||||
* | Remove un-necessary import. | Travis Oliphant | 2010-01-15 | 1 | -1/+0 |
| | |||||
* | fixed a whole bunch of doctests | Paul Ivanov | 2009-12-28 | 1 | -2/+7 |
| | |||||
* | first set of checkins from the doc editor | Jarrod Millman | 2009-11-13 | 1 | -10/+14 |
| | |||||
* | Docstring update: fft | Pauli Virtanen | 2009-10-02 | 1 | -234/+231 |
| | |||||
* | Merge from doc wiki | Pauli Virtanen | 2009-06-19 | 1 | -2/+0 |
| | |||||
* | Fix errors in examples in docstrings | Pauli Virtanen | 2009-06-02 | 1 | -1/+1 |
| | |||||
* | Merge from the doc wiki | Pauli Virtanen | 2009-03-24 | 1 | -141/+713 |
| | |||||
* | Import documentation from doc wiki (part 2, work-in-progress docstrings, but ↵ | Pauli Virtanen | 2008-10-28 | 1 | -55/+58 |
| | | | | they are still an improvement) | ||||
* | Merge from documentation editor. | Stefan van der Walt | 2008-08-05 | 1 | -58/+277 |
| | |||||
* | using identity testing for None | Jarrod Millman | 2007-11-26 | 1 | -8/+10 |
| | |||||
* | Whitespace cleanup. | Stefan van der Walt | 2007-01-08 | 1 | -1/+1 |
| | |||||
* | Refuse to compute FFT for invalid number of data points. | Stefan van der Walt | 2006-11-20 | 1 | -0/+2 |
| | |||||
* | Refer to "length of a" instead of "a" in fftpack docstrings. | Stefan van der Walt | 2006-09-22 | 1 | -16/+17 |
| | |||||
* | Clean-up some un-needed default axes. Fix default axes of ma.sum and ma.product | Travis Oliphant | 2006-08-29 | 1 | -1/+1 |
| |