summaryrefslogtreecommitdiff
path: root/doc/source/user
Commit message (Collapse)AuthorAgeFilesLines
...
* DOC: fix broken link in user guide. Closes gh-6906.Ralf Gommers2015-12-311-2/+2
| | | | [ci skip]
* STY: Break some long lines in numpy-for-matlab-users.rst.Charles Harris2015-12-171-34/+81
|
* DOC: change uses of `rank` for `dimension`Matthew Brett2015-12-161-25/+27
| | | | | | | We used to use ``rank`` to mean the number of axes in an array, but no more. Change these uses of rank to refer to dimensions. Closes gh-6839
* DOC: A bit of copy-editing of the 'NumPy for Matlab Users' guide.Warren Weckesser2015-10-301-33/+35
|
* DOC: Fix an argument in 'Numpy for Matlab Users'.Warren Weckesser2015-10-301-1/+1
| | | | | | | | | | | | | I've seen at least three occurrences (a couple on stackoverflow, and one private email) of someone using the argument 'order=15' in a call to the 'set_integrator' method of 'scipy.integrate.ode'. Presumably this is because of the suggestion in the "NumPy for Matlab Users" guide to replace 'ode15s' with 'scipy.integrate.ode(f).set_integrator('vode', method='bdf', order=15)'. The stiff solver in 'vode'--presumably the solver of interest for someone using 'ode15s'--has a maximum order of 5, and the non-stiff solver has maximum order of 12. (The maximum order of 'ode15s' is also 5; the '15' in the name refers to the variable order ranging from 1 to 5.)
* DOC: import "numpy for matlab users" from the wikiPauli Virtanen2015-10-252-0/+696
| | | | | | | Might be useful to someone. Excised too opinionated parts and replaced most links to specific software with the topical software page links.
* DOC: reorganize user guide a bit + import "tentative numpy tutorial" from wikiPauli Virtanen2015-10-257-204/+1578
| | | | | | | | The user guide was missing a quick tutorial --- the basics.* stuff is somewhat too complex already. The "building numpy" instructions also should not be "introductory material".
* DOC: remove placeholders and incompleteness warningsPauli Virtanen2015-10-254-28/+0
| | | | | Neither are useful, and will discourage both reading and editing of the material.
* Merge pull request #6406 from charris/update-gh-6310Charles Harris2015-10-061-10/+12
|\ | | | | DOC: Update gh-6310: Update docs for numpy.genfromtxt.
| * DOC: Cleanup genfromtxt documentation a bit.Charles Harris2015-10-041-10/+12
| |
| * DOC: Update docs for numpy.genfromtxt.jason king2015-10-041-3/+3
| | | | | | | | | | | | | | Note that a list of strings can be passed as the first parameter. The strings are treated as the lines in a file. Closes #6247
* | MAINT: cleanup dead code/arguments/fields from ufuncsNathaniel J. Smith2015-10-011-4/+3
|/ | | | | | | | The check_return argument and ufunc object field was never used; ditto for the "new" inner loop selector (which was never implemented), along with associated typedefs. Since I was looking at this code anyway trying to figure out which parts were actually in use, I figured I'd clear up some of the brush to make it easier next time...
* DOC: Fix outdated sphinx directives.Charles Harris2015-07-013-128/+128
| | | | | | | Examples :cdata: -> :c:data: .. cfunction:: -> .. c:function::
* genfromtxt example in user docs missing delimiterStefan Eng2015-02-051-2/+2
| | | The example given in the user docs does not run correctly without adding `delimiter=","`. This add the missing keyword to allow the examples to be run.
* Merge pull request #5473 from rgommers/doc-inplace-buildCharles Harris2015-01-251-46/+59
|\ | | | | DOC: update build instructions, add developer docs
| * DOC: add "build and test" section to developer guide. Closes gh-5465.Ralf Gommers2015-01-201-0/+7
| | | | | | | | [ci skip]
| * DOC: update "build and install" page in user guide.Ralf Gommers2015-01-201-46/+52
| | | | | | | | | | - add section on basic and parallel builds - update links and remove outdated info
* | DOC: improve record/structured array nomenclature & guideAllan Haldane2015-01-221-3/+3
|/ | | | | | | | | | | This update adds a section better describing record arrays in the user guide (numpy/doc/structured_arrays.py). It also corrects nomenclature, such that "structured array" refers to ndarrays with structured dtype, "record array" refers to modified ndarrays as created by np.rec.array, and "recarray" refers to ndarrays viewed as np.recarray. See the note at the end of the structured array user guide.
* DOC: some small fixes to the "Using Python as glue" section of the user guide.Ralf Gommers2015-01-172-98/+87
| | | | [ci skip]
* DOC: python-as-glue: copyeditLars Buitinck2014-11-191-17/+16
| | | | [ci skip]
* DOC: python-as-glue: use Cython, not PyrexLars Buitinck2014-11-181-188/+133
| | | | Fixes gh-4492. [ci skip]
* DOC: remove Weave recommendationLars Buitinck2014-11-171-224/+5
| | | | | Weave is dead. It's not removed from SciPy yet, but it's deprecated and doesn't work with Python 3.
* DOC: python-as-glue: remove Instant, PyInlineLars Buitinck2014-11-171-64/+0
| | | | Both projects appear to be dead.
* DOC/MAINT: Python 2.6 or 3.2 requiredLars Buitinck2014-09-252-14/+14
| | | | | | | | | Installation docs still stated Python 2.4 is supported, while not mentioning 3.x at all. Also corrected the statement that distutils is in python-dev on Debian, while it's actually in the main package. Several parts of the dev docs and some comments also referenced now-irrelevant 2.5 bugs/limitations.
* Merge pull request #5102 from dpinte/fix/epd_canopyJulian Taylor2014-09-231-3/+4
|\ | | | | | | replacing old reference from EPD to Canopy
| * DOC: replacing old reference from EPD to CanopyDidrik Pinte2014-09-231-3/+4
| |
* | Merge pull request #5076 from kanhua/kh_fixJulian Taylor2014-09-191-0/+6
|\ \ | |/ | | | | DOC: Minor fix on c-info.python-as-glue.rst
| * DOC: add section on compiling pyf fileskanhua2014-09-191-0/+6
| | | | | | | | | | Add section to remind the readers to recomplile add.pyf and add.f95 files before checking the add module in python
* | Fixed two typos in the c-api user guide.cel2014-08-131-2/+2
|/
* MAINT: Grammar and style corrections to whatisnumpy.rst.Charles Harris2014-05-291-12/+12
|
* DOC: Fix typos, punctuation, and grammar.Yoni Ben-Meshulam2014-05-291-3/+3
|
* Changing EPD to Canopybrettrmurphy2014-05-151-3/+3
|
* DOC: Change pyrex to Cython in c-info.how-to-extend.rst.Charles Harris2014-03-141-1/+1
|
* MAINT: Move doc/swig to tools/swig.Charles Harris2014-03-121-1/+1
| | | | | | | Also update MANIFEST.in and documentation to reflect the move. The discussion of this change is at #2384. Closes #2384. Closes #4374.
* STY: Giant whitespace cleanup.Charles Harris2013-08-181-1/+1
| | | | Now is as good a time as any with open PR's at a low.
* MAINT: Cleanup doc/source/user/basics.io.genfromtxt.rst.Charles Harris2013-08-011-152/+239
| | | | | | | Remove trailing whitespace. Break long lines. Fix some indentation. Use the `::` directive to indicate interactive examples.
* DOC: Fixes for doc/source/user/basics.io.genfromtxt.rst.Jesús Gómez2013-08-011-2/+2
| | | | | Add missing part of usecols negative index explanation and other minor redaction fixes.
* Another name change to RegisterLoopForDescrJay Bourque2013-05-141-2/+2
|
* Change name of RegisterLoopForStructType to RegisterLoopByDescrJay Bourque2013-05-141-6/+6
|
* Update c-api documentationJay Bourque2013-05-141-0/+165
|
* Use PyMODINIT_FUNC and update docs accordingly.cgohlke2012-09-021-4/+4
| | | | See https://github.com/scipy/scipy/pull/279
* DOC: Replace references to macros in old_defines with new.Charles Harris2012-02-042-5/+5
| | | | | Also remove swig support for numpy < 1 from numpy.i since it expects the old macros.
* DOC: Add tutorial for writing numpy ufunc extensions.Chris Jordan-Squire2011-08-221-31/+31
|
* Py3K compliant, extra comments addedChris Jordan-Squire2011-08-221-21/+50
|
* style changes and bugs removed from docsChris Jordan-Squire2011-08-221-39/+63
|
* ENH: Docs now Py3k compliantChris Jordan-Squire2011-08-221-20/+126
|
* Changed to follow PEP 7Chris Jordan-Squire2011-08-221-154/+144
|
* DOCS: New ufunc creation docsChris Jordan-Squire2011-08-223-180/+898
|
* DOC: c-api: Update to reflect array flag namespace changeMark Wiebe2011-07-061-26/+27
|
* DOC: add some more wiki edits, of rst files in ref/user guide.rgommers2011-03-021-2/+10
|