From 823d98f027e86351d5e4a0e89ba722971da94d18 Mon Sep 17 00:00:00 2001 From: David Rotermund <54365609+davrot@users.noreply.github.com> Date: Thu, 28 Dec 2023 16:13:10 +0100 Subject: [PATCH] Update README.md Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com> --- numpy/extending/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/numpy/extending/README.md b/numpy/extending/README.md index 8233e93..56ee4f8 100644 --- a/numpy/extending/README.md +++ b/numpy/extending/README.md @@ -141,7 +141,9 @@ Output: [1 2 3 4]]] ``` -### Don’t confuse tile() with repeat()!​ +## [numpy.repeat](https://numpy.org/doc/stable/reference/generated/numpy.repeat.html#numpy-repeat) + +**Don’t confuse tile() with repeat()!​** ```python numpy.repeat(a, repeats, axis=None)[source]