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

Fix doc formatting.

上级 95fad327
...@@ -3241,7 +3241,6 @@ class StructuredDot(gof.Op): ...@@ -3241,7 +3241,6 @@ class StructuredDot(gof.Op):
raise ValueError('shape mismatch in StructuredDot.perform', raise ValueError('shape mismatch in StructuredDot.perform',
(a.shape, b.shape)) (a.shape, b.shape))
# variable = a.dot(b) # deprecated
variable = a * b variable = a * b
if isinstance(node.outputs[0].type, SparseType): if isinstance(node.outputs[0].type, SparseType):
assert _is_sparse(variable) assert _is_sparse(variable)
......
...@@ -526,16 +526,17 @@ def qr(a, mode="full"): ...@@ -526,16 +526,17 @@ def qr(a, mode="full"):
alias of 'reduced', deprecated (default) alias of 'reduced', deprecated (default)
'economic' 'economic'
returns h from 'raw', deprecated. The options 'reduced', returns h from 'raw', deprecated.
'complete', and 'raw' are new in numpy 1.8, see the notes for more The options 'reduced', 'complete', and 'raw' are new in numpy
information. The default is 'reduced' and to maintain backward 1.8, see the notes for more information. The default is
compatibility with earlier versions of numpy both it and the old 'reduced' and to maintain backward compatibility with earlier
default 'full' can be omitted. Note that array h returned in 'raw' versions of numpy both it and the old default 'full' can be
mode is transposed for calling Fortran. The 'economic' mode is omitted. Note that array h returned in 'raw' mode is
deprecated. The modes 'full' and 'economic' may be passed using only transposed for calling Fortran. The 'economic' mode is
the first letter for backwards compatibility, but all others deprecated. The modes 'full' and 'economic' may be passed
must be spelled out. 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. Default mode is 'full' which is also default for numpy 1.6.1.
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论