Skip to content

Commit 59951dd

Browse files
committed
Add missing argmin/argmax functions
1 parent 89952b5 commit 59951dd

File tree

4 files changed

+11
-9
lines changed

4 files changed

+11
-9
lines changed

doc/conf.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,8 @@ def genbody(f, func_list, lib="blosc2"):
150150
blosc2_indexfuncs = sorted(
151151
[
152152
"count_nonzero",
153+
"concat",
154+
"stack",
153155
"squeeze",
154156
"expand_dims",
155157
"sort",
@@ -166,7 +168,7 @@ def genbody(f, func_list, lib="blosc2"):
166168
"""Indexing Functions and Utilities
167169
=======================================
168170
169-
The following functions are useful for performing indexing and oter associated operations.
171+
The following functions are useful for performing indexing and other associated operations.
170172
171173
.. currentmodule:: blosc2
172174

doc/reference/index_funcs.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,23 +8,27 @@ The following functions are useful for performing indexing and other associated
88
.. autosummary::
99

1010
broadcast_to
11+
concat
1112
count_nonzero
1213
expand_dims
1314
indices
1415
meshgrid
1516
sort
1617
squeeze
18+
stack
1719
take
1820
take_along_axis
1921

2022

2123

2224
.. autofunction:: blosc2.broadcast_to
25+
.. autofunction:: blosc2.concat
2326
.. autofunction:: blosc2.count_nonzero
2427
.. autofunction:: blosc2.expand_dims
2528
.. autofunction:: blosc2.indices
2629
.. autofunction:: blosc2.meshgrid
2730
.. autofunction:: blosc2.sort
2831
.. autofunction:: blosc2.squeeze
32+
.. autofunction:: blosc2.stack
2933
.. autofunction:: blosc2.take
3034
.. autofunction:: blosc2.take_along_axis

doc/reference/linalg.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ The following functions can be used for computing linear algebra operations with
1414
matrix_transpose
1515
diagonal
1616
outer
17-
concat
18-
stack
1917

2018

2119

@@ -27,5 +25,3 @@ The following functions can be used for computing linear algebra operations with
2725
.. autofunction:: blosc2.linalg.matrix_transpose
2826
.. autofunction:: blosc2.linalg.diagonal
2927
.. autofunction:: blosc2.linalg.outer
30-
.. autofunction:: blosc2.concat
31-
.. autofunction:: blosc2.stack

doc/reference/ufuncs.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ Note: The functions ``conj``, ``real``, ``imag``, ``contains``, ``where`` are no
2525
asin
2626
asinh
2727
atan
28-
atanh
2928
atan2
29+
atanh
3030
bitwise_and
3131
bitwise_invert
3232
bitwise_left_shift
@@ -53,9 +53,9 @@ Note: The functions ``conj``, ``real``, ``imag``, ``contains``, ``where`` are no
5353
less
5454
less_equal
5555
log
56-
log10
5756
log1p
5857
log2
58+
log10
5959
logaddexp
6060
logical_and
6161
logical_not
@@ -100,8 +100,8 @@ Note: The functions ``conj``, ``real``, ``imag``, ``contains``, ``where`` are no
100100
.. autofunction:: blosc2.asin
101101
.. autofunction:: blosc2.asinh
102102
.. autofunction:: blosc2.atan
103-
.. autofunction:: blosc2.atanh
104103
.. autofunction:: blosc2.atan2
104+
.. autofunction:: blosc2.atanh
105105
.. autofunction:: blosc2.bitwise_and
106106
.. autofunction:: blosc2.bitwise_invert
107107
.. autofunction:: blosc2.bitwise_left_shift
@@ -128,9 +128,9 @@ Note: The functions ``conj``, ``real``, ``imag``, ``contains``, ``where`` are no
128128
.. autofunction:: blosc2.less
129129
.. autofunction:: blosc2.less_equal
130130
.. autofunction:: blosc2.log
131-
.. autofunction:: blosc2.log10
132131
.. autofunction:: blosc2.log1p
133132
.. autofunction:: blosc2.log2
133+
.. autofunction:: blosc2.log10
134134
.. autofunction:: blosc2.logaddexp
135135
.. autofunction:: blosc2.logical_and
136136
.. autofunction:: blosc2.logical_not

0 commit comments

Comments
 (0)