From 9bb76557bb9aa47f6c05ae1497b70f0e0aaa72ca Mon Sep 17 00:00:00 2001 From: Athan Reines Date: Thu, 1 Dec 2022 01:57:06 -0800 Subject: [PATCH] Add complex number support to `linalg.det` --- spec/API_specification/array_api/linalg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/API_specification/array_api/linalg.py b/spec/API_specification/array_api/linalg.py index b3595e1fa..caf68c138 100644 --- a/spec/API_specification/array_api/linalg.py +++ b/spec/API_specification/array_api/linalg.py @@ -78,7 +78,7 @@ def det(x: array, /) -> array: Parameters ---------- x: array - input array having shape ``(..., M, M)`` and whose innermost two dimensions form square matrices. Should have a real-valued floating-point data type. + input array having shape ``(..., M, M)`` and whose innermost two dimensions form square matrices. Should have a floating-point data type. Returns -------