@@ -123,12 +123,14 @@ msgid ""
123123"zero, returns ``(0.0, 0)``, otherwise ``0.5 <= abs(m) < 1``. This is used "
124124"to \" pick apart\" the internal representation of a float in a portable way."
125125msgstr ""
126+ "返回 *x* 的尾数和指数作为对``(m, e)``。 *m* 是一个浮点数, *e* 是一个整数,正好是 ``x == m * 2**e`` 。 如果"
127+ " *x* 为零,则返回 ``(0.0, 0)`` ,否则返回 ``0.5 <= abs(m) < 1`` 。这用于以可移植方式“分离”浮点数的内部表示。"
126128
127129#: ../../library/math.rst:89
128130msgid ""
129131"Return an accurate floating point sum of values in the iterable. Avoids "
130132"loss of precision by tracking multiple intermediate partial sums::"
131- msgstr ""
133+ msgstr "返回迭代中的精确浮点值。通过跟踪多个中间部分和来避免精度损失:: "
132134
133135#: ../../library/math.rst:97
134136msgid ""
@@ -138,6 +140,8 @@ msgid ""
138140"occasionally double-round an intermediate sum causing it to be off in its "
139141"least significant bit."
140142msgstr ""
143+ "该算法的准确性取决于IEEE-"
144+ "754算术保证和舍入模式为半偶的典型情况。在某些非Windows版本中,底层C库使用扩展精度添加,并且有时可能会使中间和加倍,导致它在最低有效位中关闭。"
141145
142146#: ../../library/math.rst:103
143147msgid ""
@@ -168,7 +172,7 @@ msgstr "若 *a* 和 *b* 的值比较接近则返回 ``True``,否则返回 ``Fa
168172msgid ""
169173"Whether or not two values are considered close is determined according to "
170174"given absolute and relative tolerances."
171- msgstr ""
175+ msgstr "根据给定的绝对和相对容差确定两个值是否被认为是接近的。 "
172176
173177#: ../../library/math.rst:126
174178msgid ""
@@ -420,30 +424,32 @@ msgid ""
420424"are analogs of trigonometric functions that are based on hyperbolas instead "
421425"of circles."
422426msgstr ""
427+ "`双曲函数<https://en.wikipedia.org/wiki/Hyperbolic_function>`_ "
428+ "是三角函数的类比,它们基于双曲线而不是圆。"
423429
424430#: ../../library/math.rst:371
425431msgid "Return the inverse hyperbolic cosine of *x*."
426- msgstr ""
432+ msgstr "返回 *x* 的反双曲余弦值。 "
427433
428434#: ../../library/math.rst:376
429435msgid "Return the inverse hyperbolic sine of *x*."
430- msgstr ""
436+ msgstr "返回 *x* 的反双曲正弦值。 "
431437
432438#: ../../library/math.rst:381
433439msgid "Return the inverse hyperbolic tangent of *x*."
434- msgstr ""
440+ msgstr "返回 *x* 的反双曲正切值。 "
435441
436442#: ../../library/math.rst:386
437443msgid "Return the hyperbolic cosine of *x*."
438- msgstr ""
444+ msgstr "返回 *x* 的双曲余弦值。 "
439445
440446#: ../../library/math.rst:391
441447msgid "Return the hyperbolic sine of *x*."
442- msgstr ""
448+ msgstr "返回 *x* 的双曲正弦值。 "
443449
444450#: ../../library/math.rst:396
445451msgid "Return the hyperbolic tangent of *x*."
446- msgstr ""
452+ msgstr "返回 *x* 的双曲正切值。 "
447453
448454#: ../../library/math.rst:400
449455msgid "Special functions"
@@ -540,7 +546,7 @@ msgid ""
540546"Note that Python makes no effort to distinguish signaling NaNs from quiet "
541547"NaNs, and behavior for signaling NaNs remains unspecified. Typical behavior "
542548"is to treat all NaNs as though they were quiet."
543- msgstr ""
549+ msgstr "请注意,Python不会将显式NaN与静默NaN区分开来,并且显式NaN的行为仍未明确。典型的行为是将所有NaN视为静默的。 "
544550
545551#: ../../library/math.rst:506
546552msgid "Module :mod:`cmath`"
0 commit comments