From ec992ff73563f7ea46821b31bf1612ccf8266210 Mon Sep 17 00:00:00 2001 From: zhouzaihang Date: Thu, 1 Jul 2021 03:53:20 +0000 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8DMath=E5=BA=93=E6=8E=A5?= =?UTF-8?q?=E5=8F=A3=E6=96=87=E6=A1=A3=E9=83=A8=E5=88=86=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- math/README.md | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/math/README.md b/math/README.md index 64657c2..b863bf9 100644 --- a/math/README.md +++ b/math/README.md @@ -114,76 +114,76 @@ sin sqrt tan trunc 若 `x` 为有限的,则返回 `True` 。 -- `mathisinf`(*x*) +- `math.isinf`(*x*) 若 `x` 为无限,则返回 `True` 。 -- `mathisnan`(*x*) +- `math.isnan`(*x*) 若 `x` 非数字,则返回 `True` 。 -- `mathldexp`(*x*, *exp*) +- `math.ldexp`(*x*, *exp*) 返回 `x * (2**exp)`. -- `mathlgamma`(*x*) +- `math.lgamma`(*x*) 返回 `x` 的伽玛函数的自然对数。 -- `mathlog`(*x*) +- `math.log`(*x*) 返回 `x` 的自然对数。 -- `mathlog10`(*x*) +- `math.log10`(*x*) 返回 `x` 以10为底的对数。 -- `mathlog2`(*x*) +- `math.log2`(*x*) 返回 `x` 以2为底的对数。 -- `mathmodf`(*x*) +- `math.modf`(*x*) 返回包含两个浮点值的元组,即x的分数和积分部分。两个返回值都与 `x` 有同样标记。 -- `mathpow`(*x*, *y*) +- `math.pow`(*x*, *y*) 将 `x` 返回 `y` 的幂。 -- `mathradians`(*x*) +- `math.radians`(*x*) 返回度数 `x` 的弧度。 -- `mathsin`(*x*) +- `math.sin`(*x*) 返回 `x` 的正弦函数。 -- `mathsinh`(*x*) +- `math.sinh`(*x*) 返回的 `x` 双曲正弦函数。 -- `mathsqrt`(*x*) +- `math.sqrt`(*x*) 返回 `x` 的平方根. -- `mathtan`(*x*) +- `math.tan`(*x*) 返回 `x` 的正切函数。 -- `mathtanh`(*x*) +- `math.tanh`(*x*) 返回 `x` 的双曲正切函数。 -- `mathtrunc`(*x*) +- `math.trunc`(*x*) 截尾函数,返回 `x` 的整数部分。 ### 常量 -- `mathe` +- `math.e` 自然对数的底。 -- `mathpi` +- `math.pi` 一个圆的周长与其直径的比值。 \ No newline at end of file -- Gitee