summaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* DOC: Updated f2py size support note.Pearu Peterson2011-05-061-5/+2
|
* ENH: Ticket #1218, allow use of custom formatters in array2string andRalf Gommers2011-04-241-0/+12
| | | | set_printoptions. Add tests for the new functionality.
* DOC: Document the new keyword arguments for ufuncsMark Wiebe2011-04-221-0/+39
|
* DOC: Improve the documentation about type promotionMark Wiebe2011-04-222-7/+49
|
* DOC: Changes required to the configuration to start building docs with ↵Michael Droettboom2011-04-021-5/+24
| | | | matplotlib's plot_directive. Requires that matplotlib have the new "merged" plot_directive. (#1074)
* DOC: Document the changed default error handling for the 1.6.x release.Charles Harris2011-04-011-0/+4
|
* DOC: Remove the advice to 'import scipy as sp' from the documentation.Robert Kern2011-04-013-7/+11
| | | | Correct a statement about how doctest namespaces are initialized in scipy.
* DEP: deprecate normed kw in histogram and restore its old behavior. IntroduceRalf Gommers2011-03-301-0/+7
| | | | | | | | | | | | | | | density kw. This reverts part of the following commits: 3743430e 400a2a67 3743430e Behavior for normed keyword is again the same as it was in Numpy 1.5. The desired behavior (probability density) is implemented by the new density keyword, which reflects the functionality better than "normed". For a discussion on this issue, see the Numpy mailing list thread started on Aug 6th, 2010.
* DOC: add deprecation section to docstandard. Closes #1501.Ralf Gommers2011-03-291-10/+32
|
* DOC: update class method docstring section of docstandard. Closes #1165.Ralf Gommers2011-03-291-1/+5
|
* DOC: update References section of docstandard. Closes #1509, #1524.Ralf Gommers2011-03-291-5/+2
|
* DOC: add description of how to document modules to the doc standard.Ralf Gommers2011-03-291-0/+25
| | | | Closes #1280.
* DOC: The nditer exposure wasn't linked correctlyMark Wiebe2011-03-222-1/+1
|
* API: Rename 'niter' to 'nop' in the nditerMark Wiebe2011-03-171-24/+24
| | | | | | This name was chosen partially based on the previous multi-iter, which stored an array of iterators, so 'niter' made sense. In the new nditer, it doesn't, and 'nop' for number of operands seems better.
* DOC: slogdet was added in 1.5.0.Charles Harris2011-03-171-3/+0
|
* DOC: Fill in more of the nditer docsMark Wiebe2011-03-161-0/+1
|
* DOC: Change newiter to nditer in new iterator NEP.Ralf Gommers2011-03-161-9/+9
|
* ENH: Add 'subok' parameter to PyArray_NewLikeArray, np.empty_like, ↵Mark Wiebe2011-03-151-1/+5
| | | | | | | np.zeros_like, and np.ones_like This way, the sub-type can be avoided if necessary. This helps mitigate, but doesn't fix, ticket #1753, by allowing "b = np.empty_like(a, subok=False)".
* API: Rename 'coords' to 'multi-index' in ravel_coords and iterator APIMark Wiebe2011-03-143-37/+37
|
* DOC: Document the addition of the new polynomials in the release notes.Charles Harris2011-03-141-4/+9
|
* DOC: BLD: fix some doc build warnings.Ralf Gommers2011-03-142-2/+1
| | | | | Word of warning: do not use Sphinx 1.0.7 (latest release), its autodoc extension is broken. 1.0.4 works fine.
* STY: Rename NPY_ITER_NO_INNER_ITERATION to NPY_ITER_EXTERNAL_LOOPMark Wiebe2011-03-141-22/+23
| | | | | It's a little bit shorter, and more intuitively expresses what the flag does.
* DOC: Add info about iterator, new functions, and C API additions to release ↵Mark Wiebe2011-03-131-4/+30
| | | | notes
* DOC: Document constructor API change, and fill in some more missing ↵Mark Wiebe2011-03-133-53/+115
| | | | documentation
* DOC: Updated f2py related release notes.Pearu Peterson2011-03-131-4/+15
|
* DOC: update 1.6.0 release notes. Add headers for items to still be filled in.rgommers2011-03-131-2/+44
|
* BUG: For compatibility with 1.5, revert to permitting limited broadcasting ↵Mark Wiebe2011-03-111-1/+1
| | | | | | | | | of the assignment output This change got Travis's -10 veto for 1.6. An unfortunate consequence of reverting this is that some of the broadcasting error messages get worse, but they're still no worse than in 1.5.
* REL: add 1.6.0 release notes.rgommers2011-03-112-7/+94
|
* DOC: fix typo in test guidelines.rgommers2011-03-111-1/+1
|
* DEP: remove deprecated get_numpy_include.rgommers2011-03-111-5/+2
|
* DEP: remove deprecated names in fftpack.rgommers2011-03-111-11/+10
|
* DOC: Replace 'deprecated' with 'superceded' in a few places, fix a typo.Mark Wiebe2011-03-102-16/+17
|
* DOC: Add some missing documentation, hyper-link the iterator documentationMark Wiebe2011-03-102-164/+348
|
* API: Rename the iterator function pointer types to be more consistent with ↵Mark Wiebe2011-03-101-8/+8
| | | | | | | NumPy convention 'NpyIter_IterNext_Fn' -> 'NpyIter_IterNextFunc *' 'NpyIter_GetCoords_Fn' -> 'NpyIter_GetCoordsFunc *'
* API: Change iterator API parameters ndim and niter from npy_intp to intMark Wiebe2011-03-101-18/+18
| | | | | These parameters are never large, so it's better to use a straight int instead of npy_intp, consistent with ndim in PyArrayObject as well.
* DOC: Copy iterator API documentation from the NEPMark Wiebe2011-03-052-0/+1102
|
* DOC: add some more wiki edits, of rst files in ref/user guide.rgommers2011-03-024-12/+20
|
* ENH: core: Allow user to pass in output array for dot()Luis Pedro Coelho2011-02-121-1/+9
| | | | | | | | | This avoids the memory allocation. It is strict in checking that the types are correct, but since it is intended as an optimisation, it should only be used when the user knows what they are doing. The out parameter is added both to the BLAS and non-BLAS versions of dot(). Tests are included.
* ENH: index_tricks: Implement unravel_index and ravel_coords functions in CMark Wiebe2011-02-101-0/+1
|
* STY: Rename NPY_ITER_DONT_REVERSE_AXES to NPY_ITER_DONT_NEGATE_STRIDES to be ↵Mark Wiebe2011-01-281-2/+2
| | | | more intuitive
* Merge branch 'mw_neps'Mark Wiebe2011-01-282-0/+2289
|\
| * NEP: iter: Add NPY_ITER_DONT_REVERSE_AXES flagMark Wiebe2011-01-281-1/+15
| |
| * NEP: iter: Add NpyIter_GetAxisStrideArray functionMark Wiebe2011-01-261-0/+14
| |
| * NEP: iter: Add some more functionsMark Wiebe2011-01-261-0/+36
| |
| * NEP: Correct some spelling errorsMark Wiebe2011-01-221-2/+2
| |
| * NEP: Add more flags and some timing resultsMark Wiebe2011-01-221-13/+119
| |
| * NEP: iter: Add some typical inner loop examples, other small changesMark Wiebe2011-01-081-23/+162
| |
| * NEP: iter: Add functionality for allowing multi-threaded iterationMark Wiebe2011-01-071-28/+110
| |
| * NEP: iter: Add NpyIter_ResetBasePointers function, remove NPY_ITER_OFFSETS flagMark Wiebe2011-01-041-38/+54
| |
| * NEP: iter: Clarify op_axes slightly, and add offsets exampleMark Wiebe2010-12-221-22/+42
| |