summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2017-10-16 11:09:32 -0600
committerCharles Harris <charlesr.harris@gmail.com>2017-10-16 11:09:32 -0600
commit4c4f4d5a75829f985951ac201c69cc46dc26322f (patch)
treea80a8aefa5ed20ea422a0264655380144cb388d1
parentd4afa3eba6c9af2a7b85586adbe2801505eaf3ff (diff)
downloadnumpy-4c4f4d5a75829f985951ac201c69cc46dc26322f.tar.gz
DOC: Make qr options render correctly as list.
[ci skip]
-rw-r--r--numpy/linalg/linalg.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/numpy/linalg/linalg.py b/numpy/linalg/linalg.py
index d2ae7befc..060a3ecd4 100644
--- a/numpy/linalg/linalg.py
+++ b/numpy/linalg/linalg.py
@@ -630,15 +630,15 @@ def qr(a, mode='reduced'):
mode : {'reduced', 'complete', 'r', 'raw', 'full', 'economic'}, optional
If K = min(M, N), then
- 'reduced' : returns q, r with dimensions (M, K), (K, N) (default)
- 'complete' : returns q, r with dimensions (M, M), (M, N)
- 'r' : returns r only with dimensions (K, N)
- 'raw' : returns h, tau with dimensions (N, M), (K,)
- 'full' : alias of 'reduced', deprecated
- 'economic' : returns h from 'raw', deprecated.
+ * 'reduced' : returns q, r with dimensions (M, K), (K, N) (default)
+ * 'complete' : returns q, r with dimensions (M, M), (M, N)
+ * 'r' : returns r only with dimensions (K, N)
+ * 'raw' : returns h, tau with dimensions (N, M), (K,)
+ * 'full' : alias of 'reduced', deprecated
+ * 'economic' : returns h from 'raw', deprecated.
The options 'reduced', 'complete, and 'raw' are new in numpy 1.8,
- see the notes for more information. The default is 'reduced' and to
+ see the notes for more information. The default is 'reduced', and to
maintain backward compatibility with earlier versions of numpy both
it and the old default 'full' can be omitted. Note that array h
returned in 'raw' mode is transposed for calling Fortran. The