diff options
author | Aaron Meurer <asmeurer@gmail.com> | 2021-06-14 14:07:47 -0600 |
---|---|---|
committer | Aaron Meurer <asmeurer@gmail.com> | 2021-06-14 14:07:47 -0600 |
commit | ebb1600bdc9a8266ba239bc9f8c7b6bd2779f249 (patch) | |
tree | 40948a882d37ea73d7d03dac56b3a35a1b692453 | |
parent | 8c78b84968e580f24b3705378fb35705a434cdf1 (diff) | |
download | numpy-ebb1600bdc9a8266ba239bc9f8c7b6bd2779f249.tar.gz |
Fix the matrix_rank signature in the stub file
-rw-r--r-- | numpy/linalg/__init__.pyi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/linalg/__init__.pyi b/numpy/linalg/__init__.pyi index 5080019f4..00db05079 100644 --- a/numpy/linalg/__init__.pyi +++ b/numpy/linalg/__init__.pyi @@ -17,7 +17,7 @@ def eig(a): ... def eigh(a, UPLO=...): ... def svd(a, full_matrices=..., compute_uv=..., hermitian=...): ... def cond(x, p=...): ... -def matrix_rank(M, tol=..., hermitian=...): ... +def matrix_rank(A, tol=..., hermitian=...): ... def pinv(a, rcond=..., hermitian=...): ... def slogdet(a): ... def det(a): ... |