Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | ENH: add signature argument to vectorize for vectorizing like generalized ↵ | Stephan Hoyer | 2016-10-17 | 1 | -0/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | ufuncs (#8054) * ENH: add signature argument to vectorize for generalized ufuncs Example usage (from the docstring): Vectorized convolution: >>> convolve = np.vectorize(np.convolve, signature='(n),(m)->(k)') >>> convolve(np.eye(4), [1, 2, 1]) array([[ 1., 2., 1., 0., 0., 0.], [ 0., 1., 2., 1., 0., 0.], [ 0., 0., 1., 2., 1., 0.], [ 0., 0., 0., 1., 2., 1.]]) * Use str.format rather than % * Fix spelling typo * BUG: fix np.vectorize for size 0 inputs * DOC: add vectorize to 1.12.0 release notes * [ci-skip] Remove outdated comment | ||||
* | change all non-code instances of Numpy to NumPy | Pierre de Buyl | 2016-09-06 | 1 | -2/+2 |
| | | | | | | | | | Instances remain for NumpyVersion and Numpy.rec.fromarrays that are references to code. Release notes were left unchanged. see issue #7986 | ||||
* | DOC: Stricter checks for gufunc signatures | jaimefrio | 2014-10-20 | 1 | -23/+43 |
| | | | | | | Documented the the new behavior in c-api.generalized-ufuncs.rst. Added PyUFunc_FromFuncAndDataAndSignature to c-api.ufunc.rst. | ||||
* | DOC: tweak gufunc API documentation, remove broken link. Closes gh-4726. | Ralf Gommers | 2014-05-24 | 1 | -15/+11 |
| | |||||
* | Merge from doc wiki | Pauli Virtanen | 2009-06-19 | 1 | -0/+175 |