summaryrefslogtreecommitdiff
path: root/doc/source/user/numpy-for-matlab-users.rst
Commit message (Collapse)AuthorAgeFilesLines
* 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-251-0/+695
Might be useful to someone. Excised too opinionated parts and replaced most links to specific software with the topical software page links.