Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | DOC: Array API : Directory restructure and code cleanup (#14010) | Kriti Singh | 2019-07-22 | 1 | -216/+0 |
| | | | | | | * Minor improvements in Array API docs * Directory restruture | ||||
* | MAINT: formatting, remove version, rework flags | mattip | 2018-10-11 | 1 | -5/+12 |
| | |||||
* | merge master into gufunc-signature-modification2 | mattip | 2018-09-15 | 1 | -3/+3 |
|\ | |||||
| * | DOC: Adjust the gufunc signature examples | Matti Picus | 2018-09-13 | 1 | -2/+6 |
| | | |||||
* | | ENH: test, document, implement flexible signature. | mattip | 2018-07-17 | 1 | -18/+33 |
|/ | | | | Goal is allow signatures like (m?,n),(n,p?)->(m?,p?) for matmul. | ||||
* | DOC: Clarify C-API for generalized ufuncs. | mattip | 2018-05-28 | 1 | -3/+4 |
| | |||||
* | 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 |