10000 DOC: Enable web docs for numpy.trapezoid and add back links by bmwoodruff · Pull Request #26645 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

DOC: Enable web docs for numpy.trapezoid and add back links #26645

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions doc/source/reference/routines.math.rst
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ Sums, products, differences
ediff1d
gradient
cross
trapezoid

Exponents and logarithms
------------------------
Expand Down
2 changes: 2 additions & 0 deletions numpy/_core/fromnumeric.py
Original file line number Diff line number Diff line change
Expand Up @@ -2355,6 +2355,7 @@ def sum(a, axis=None, dtype=None, out=None, keepdims=np._NoValue,
ndarray.sum : Equivalent method.
add: ``numpy.add.reduce`` equivalent function.
cumsum : Cumulative sum of array elements.
trapezoid : Integration of array values using composite trapezoidal rule.

mean, average

Expand Down Expand Up @@ -2681,6 +2682,7 @@ def cumsum(a, axis=None, dtype=None, out=None):
See Also
--------
sum : Sum array elements.
trapezoid : Integration of array values using composite trapezoidal rule.
diff : Calculate the n-th discrete difference along given axis.

Notes
Expand Down
0