Skip to content

Commit

Permalink
DOC: Add release related documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
jseabold authored and pv committed May 19, 2012
1 parent 734317f commit 2ff9a95
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
7 changes: 7 additions & 0 deletions doc/release/0.11.0-notes.rst
Expand Up @@ -86,6 +86,13 @@ A function for creating Pascal matrices, ``scipy.linalg.pascal``, was added.

``misc.logsumexp`` now takes an optional ``axis`` keyword argument.

QZ Decomposition
----------------

It is now possible to calculate the QZ, or Generalized Schur, decomposition
using `scipy.linalg.qz`. This function wraps the LAPACK routines sgges, dgges,
cgges, and zgges.

Sparse Graph Submodule
----------------------
The new submodule :mod:`scipy.sparse.csgraph` implements a number of efficient
Expand Down
2 changes: 2 additions & 0 deletions scipy/linalg/_decomp_qz.py
Expand Up @@ -114,6 +114,8 @@ def qz(A, B, output='real', lwork=None, sort=None, overwrite_a=False,
Notes
-----
Q is transposed versus the equivalent function in Matlab.
.. versionadded:: 0.11.0
"""
if not output in ['real','complex','r','c']:
raise ValueError("argument must be 'real', or 'complex'")
Expand Down

0 comments on commit 2ff9a95

Please sign in to comment.