fix docstring of sinc

This commit is contained in:
Jeff Epler 2023-05-16 07:32:25 -05:00
parent 1150554ad5
commit 6000743c45
No known key found for this signature in database
GPG key ID: D5BF15AB975AB4DE

View file

@ -571,8 +571,8 @@ MP_DEFINE_CONST_FUN_OBJ_1(vector_sin_obj, vector_sin);
#endif #endif
#if ULAB_NUMPY_HAS_SINC #if ULAB_NUMPY_HAS_SINC
//| def sin(a: _ArrayLike) -> ulab.numpy.ndarray: //| def sinc(a: _ArrayLike) -> ulab.numpy.ndarray:
//| """Computes the sine function""" //| """Computes the normalized sinc function"""
//| ... //| ...
//| //|