From 1fa79c96ce3ac5b368554c56c072b814abf81e8e Mon Sep 17 00:00:00 2001 From: Matthew Date: Wed, 8 Dec 2021 18:04:56 +0000 Subject: [PATCH] Specify numeric arrays for `argmin` and `argmax` --- spec/API_specification/searching_functions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/API_specification/searching_functions.md b/spec/API_specification/searching_functions.md index f0311b8b7..7bf3f346e 100644 --- a/spec/API_specification/searching_functions.md +++ b/spec/API_specification/searching_functions.md @@ -25,7 +25,7 @@ Returns the indices of the maximum values along a specified axis. When the maxim - **x**: _<array>_ - - input array. + - input array. Should have a numeric data type. - **axis**: _Optional\[ int ]_ @@ -50,7 +50,7 @@ Returns the indices of the minimum values along a specified axis. When the minim - **x**: _<array>_ - - input array. + - input array. Should have a numeric data type. - **axis**: _Optional\[ int ]_