diff --git a/math/README.md b/math/README.md index 64657c2d8e54c2efe8ccda5b5b57c871883be2c9..b863bf9d05ff00176a200f7c06fde134f129cb98 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