diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2014-03-13 16:14:22 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2014-03-22 17:36:28 -0600 |
commit | 8ba277d1a55f285d70659a0aa1489591cf46f321 (patch) | |
tree | 1bad8da59568ceb010acc00154f38d1b467164ca | |
parent | 1c825f38d74bd9435c0b0c691dbea0a36a1ab0af (diff) | |
download | numpy-8ba277d1a55f285d70659a0aa1489591cf46f321.tar.gz |
DOC: Note new random.multivariate_normal warning in release notes.
-rw-r--r-- | doc/release/1.9.0-notes.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/release/1.9.0-notes.rst b/doc/release/1.9.0-notes.rst index 8a782f459..f1d553952 100644 --- a/doc/release/1.9.0-notes.rst +++ b/doc/release/1.9.0-notes.rst @@ -140,6 +140,12 @@ calls to ``numpy.distutils.system_info.get_info('blas_opt')`` will not print anything on the output. This is mostly for other packages using numpy.distutils. +Covariance check in ``np.random.multivariate_normal`` +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +A ``RuntimeWarning`` warning is raised when the covariance matrix is not +positive-semidefinite. + + Changes ======= |