Skip to content

Commit

Permalink
DOC add versionadded and fix example
Browse files Browse the repository at this point in the history
  • Loading branch information
lorentzenchr committed May 5, 2024
1 parent 13f3c9e commit 4523998
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions scipy/special/_special_ufuncs_docs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2781,12 +2781,14 @@ const char *log_wright_bessel_doc = R"(
Due to the complexity of the function with its three parameters, only
non-negative arguments are implemented.
.. versionadded:: 1.14.0
Examples
--------
>>> from scipy.special import log_wright_bessel
>>> a, b, x = 1.5, 1.1, 2.5
>>> wright_bessel(a, b-1, x)
1.511041224929469
>>> log_wright_bessel(a, b, x)
1.1947654935299217
)";

const char *mathieu_a_doc = R"(
Expand Down Expand Up @@ -3935,6 +3937,8 @@ const char *wright_bessel_doc = R"(
Due to the complexity of the function with its three parameters, only
non-negative arguments are implemented.
.. versionadded:: 1.7.0
References
----------
.. [1] Digital Library of Mathematical Functions, 10.46.
Expand Down

0 comments on commit 4523998

Please sign in to comment.