提交 bfb16ad4 authored 作者: Arnaud Bergeron's avatar Arnaud Bergeron

Fix doc formatting.

上级 95fad327
......@@ -3241,7 +3241,6 @@ class StructuredDot(gof.Op):
raise ValueError('shape mismatch in StructuredDot.perform',
(a.shape, b.shape))
# variable = a.dot(b) # deprecated
variable = a * b
if isinstance(node.outputs[0].type, SparseType):
assert _is_sparse(variable)
......
......@@ -526,16 +526,17 @@ def qr(a, mode="full"):
alias of 'reduced', deprecated (default)
'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 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 'economic' mode is
deprecated. The modes 'full' and 'economic' may be passed using only
the first letter for backwards compatibility, but all others
must be spelled out.
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 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 'economic' mode is
deprecated. The modes 'full' and 'economic' may be passed
using only the first letter for backwards compatibility, but
all others must be spelled out.
Default mode is 'full' which is also default for numpy 1.6.1.
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论