From 6000743c456c165f1a68939fb03d6a1250928116 Mon Sep 17 00:00:00 2001 From: Jeff Epler Date: Tue, 16 May 2023 07:32:25 -0500 Subject: [PATCH] fix docstring of sinc --- code/numpy/vector.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/numpy/vector.c b/code/numpy/vector.c index 914ab01..cc44904 100644 --- a/code/numpy/vector.c +++ b/code/numpy/vector.c @@ -571,8 +571,8 @@ MP_DEFINE_CONST_FUN_OBJ_1(vector_sin_obj, vector_sin); #endif #if ULAB_NUMPY_HAS_SINC -//| def sin(a: _ArrayLike) -> ulab.numpy.ndarray: -//| """Computes the sine function""" +//| def sinc(a: _ArrayLike) -> ulab.numpy.ndarray: +//| """Computes the normalized sinc function""" //| ... //|