@@ -13,8 +13,10 @@ msgstr ""
13
13
"Report-Msgid-Bugs-To : \n "
14
14
"POT-Creation-Date : 2020-02-09 12:40+0000\n "
15
15
"PO-Revision-Date : 2017-02-16 23:02+0000\n "
16
- "
Last-Translator :
Claudio Rogerio Carvalho Filho <[email protected] >, 2017\n "
17
- "Language-Team : Portuguese (Brazil) (https://www.transifex.com/python-doc/teams/5390/pt_BR/)\n "
16
+ "
Last-Translator :
Claudio Rogerio Carvalho Filho <[email protected] >, "
17
+ "2017\n "
18
+ "Language-Team : Portuguese (Brazil) (https://www.transifex.com/python-doc/ "
19
+ "teams/5390/pt_BR/)\n "
18
20
"Language : pt_BR\n "
19
21
"MIME-Version : 1.0\n "
20
22
"Content-Type : text/plain; charset=UTF-8\n "
@@ -23,7 +25,7 @@ msgstr ""
23
25
24
26
#: ../../library/cmath.rst:2
25
27
msgid ":mod:`cmath` --- Mathematical functions for complex numbers"
26
- msgstr ""
28
+ msgstr ":mod:`cmath` --- Funções matemáticas para números complexos "
27
29
28
30
#: ../../library/cmath.rst:9
29
31
msgid ""
@@ -39,9 +41,9 @@ msgstr ""
39
41
#: ../../library/cmath.rst:18
40
42
msgid ""
41
43
"On platforms with hardware and system-level support for signed zeros, "
42
- "functions involving branch cuts are continuous on *both* sides of the branch"
43
- " cut: the sign of the zero distinguishes one side of the branch cut from the"
44
- " other. On platforms that do not support signed zeros the continuity is as "
44
+ "functions involving branch cuts are continuous on *both* sides of the branch "
45
+ "cut: the sign of the zero distinguishes one side of the branch cut from the "
46
+ "other. On platforms that do not support signed zeros the continuity is as "
45
47
"specified below."
46
48
msgstr ""
47
49
@@ -52,15 +54,15 @@ msgstr ""
52
54
#: ../../library/cmath.rst:28
53
55
msgid ""
54
56
"A Python complex number ``z`` is stored internally using *rectangular* or "
55
- "*Cartesian* coordinates. It is completely determined by its *real part* "
56
- "``z. real`` and its *imaginary part* ``z.imag``. In other words::"
57
+ "*Cartesian* coordinates. It is completely determined by its *real part* ``z. "
58
+ "real`` and its *imaginary part* ``z.imag``. In other words::"
57
59
msgstr ""
58
60
59
61
#: ../../library/cmath.rst:35
60
62
msgid ""
61
63
"*Polar coordinates* give an alternative way to represent a complex number. "
62
- "In polar coordinates, a complex number *z* is defined by the modulus *r* and"
63
- " the phase angle *phi*. The modulus *r* is the distance from *z* to the "
64
+ "In polar coordinates, a complex number *z* is defined by the modulus *r* and "
65
+ "the phase angle *phi*. The modulus *r* is the distance from *z* to the "
64
66
"origin, while the phase *phi* is the counterclockwise angle, measured in "
65
67
"radians, from the positive x-axis to the line segment that joins the origin "
66
68
"to *z*."
@@ -76,8 +78,8 @@ msgstr ""
76
78
msgid ""
77
79
"Return the phase of *x* (also known as the *argument* of *x*), as a float. "
78
80
"``phase(x)`` is equivalent to ``math.atan2(x.imag, x.real)``. The result "
79
- "lies in the range [-\\ *π*, *π*], and the branch cut for this operation lies"
80
- " along the negative real axis, continuous from above. On systems with "
81
+ "lies in the range [-\\ *π*, *π*], and the branch cut for this operation lies "
82
+ "along the negative real axis, continuous from above. On systems with "
81
83
"support for signed zeros (which includes most systems in current use), this "
82
84
"means that the sign of the result is the same as the sign of ``x.imag``, "
83
85
"even when ``x.imag`` is zero::"
@@ -86,14 +88,14 @@ msgstr ""
86
88
#: ../../library/cmath.rst:64
87
89
msgid ""
88
90
"The modulus (absolute value) of a complex number *x* can be computed using "
89
- "the built-in :func:`abs` function. There is no separate :mod:`cmath` module"
90
- " function for this operation."
91
+ "the built-in :func:`abs` function. There is no separate :mod:`cmath` module "
92
+ "function for this operation."
91
93
msgstr ""
92
94
93
95
#: ../../library/cmath.rst:71
94
96
msgid ""
95
- "Return the representation of *x* in polar coordinates. Returns a pair ``(r,"
96
- " phi)`` where *r* is the modulus of *x* and phi is the phase of *x*. "
97
+ "Return the representation of *x* in polar coordinates. Returns a pair ``(r, "
98
+ "phi)`` where *r* is the modulus of *x* and phi is the phase of *x*. "
97
99
"``polar(x)`` is equivalent to ``(abs(x), phase(x))``."
98
100
msgstr ""
99
101
@@ -122,8 +124,8 @@ msgstr ""
122
124
123
125
#: ../../library/cmath.rst:101
124
126
msgid ""
125
- "Return the base-10 logarithm of *x*. This has the same branch cut as "
126
- ":func: `log`."
127
+ "Return the base-10 logarithm of *x*. This has the same branch cut as :func: "
128
+ "`log`."
127
129
msgstr ""
128
130
129
131
#: ../../library/cmath.rst:107
@@ -187,9 +189,9 @@ msgstr ""
187
189
188
190
#: ../../library/cmath.rst:167
189
191
msgid ""
190
- "Return the inverse hyperbolic tangent of *x*. There are two branch cuts: One"
191
- " extends from ``1`` along the real axis to ``∞``, continuous from below. The"
192
- " other extends from ``-1`` along the real axis to ``-∞``, continuous from "
192
+ "Return the inverse hyperbolic tangent of *x*. There are two branch cuts: One "
193
+ "extends from ``1`` along the real axis to ``∞``, continuous from below. The "
194
+ "other extends from ``-1`` along the real axis to ``-∞``, continuous from "
193
195
"above."
194
196
msgstr ""
195
197
@@ -232,8 +234,8 @@ msgid ""
232
234
"Return ``True`` if the values *a* and *b* are close to each other and "
233
235
"``False`` otherwise."
234
236
msgstr ""
235
- "Retorna ``True`` se os valores *a* e *b* estiverem próximos e ``False`` caso"
236
- " contrário."
237
+ "Retorna ``True`` se os valores *a* e *b* estiverem próximos e ``False`` caso "
238
+ "contrário."
237
239
238
240
#: ../../library/cmath.rst:216
239
241
msgid ""
@@ -262,8 +264,8 @@ msgid ""
262
264
"*abs_tol* is the minimum absolute tolerance -- useful for comparisons near "
263
265
"zero. *abs_tol* must be at least zero."
264
266
msgstr ""
265
- "*abs_tol* é a tolerância absoluta mínima -- útil para comparações próximas a"
266
- " zero. *abs_tol* deve ser pelo menos zero."
267
+ "*abs_tol* é a tolerância absoluta mínima -- útil para comparações próximas a "
268
+ "zero. *abs_tol* deve ser pelo menos zero."
267
269
268
270
#: ../../library/cmath.rst:228
269
271
msgid ""
@@ -282,8 +284,8 @@ msgid ""
282
284
msgstr ""
283
285
"Os valores especiais do IEEE 754 de ``NaN``, ``inf`` e ``-inf`` serão "
284
286
"tratados de acordo com as regras do IEEE. Especificamente, ``NaN`` não é "
285
- "considerado próximo a qualquer outro valor, incluindo ``NaN``. ``inf`` e "
286
- "``- inf`` são considerados apenas próximos a si mesmos."
287
+ "considerado próximo a qualquer outro valor, incluindo ``NaN``. ``inf`` e ``- "
288
+ "inf`` são considerados apenas próximos a si mesmos."
287
289
288
290
#: ../../library/cmath.rst:240
289
291
msgid ":pep:`485` -- A function for testing approximate equality"
@@ -330,13 +332,13 @@ msgstr ""
330
332
#: ../../library/cmath.rst:296
331
333
msgid ""
332
334
"Note that the selection of functions is similar, but not identical, to that "
333
- "in module :mod:`math`. The reason for having two modules is that some users"
334
- " aren't interested in complex numbers, and perhaps don't even know what they"
335
- " are. They would rather have ``math.sqrt(-1)`` raise an exception than "
336
- "return a complex number. Also note that the functions defined in "
337
- ":mod: `cmath` always return a complex number, even if the answer can be "
338
- "expressed as a real number (in which case the complex number has an "
339
- "imaginary part of zero)."
335
+ "in module :mod:`math`. The reason for having two modules is that some users "
336
+ "aren't interested in complex numbers, and perhaps don't even know what they "
337
+ "are. They would rather have ``math.sqrt(-1)`` raise an exception than "
338
+ "return a complex number. Also note that the functions defined in :mod: "
339
+ "`cmath` always return a complex number, even if the answer can be expressed "
340
+ "as a real number (in which case the complex number has an imaginary part of "
341
+ "zero)."
340
342
msgstr ""
341
343
342
344
#: ../../library/cmath.rst:304
@@ -346,13 +348,13 @@ msgid ""
346
348
"It is assumed that if you need to compute with complex functions, you will "
347
349
"understand about branch cuts. Consult almost any (not too elementary) book "
348
350
"on complex variables for enlightenment. For information of the proper "
349
- "choice of branch cuts for numerical purposes, a good reference should be the"
350
- " following:"
351
+ "choice of branch cuts for numerical purposes, a good reference should be the "
352
+ "following:"
351
353
msgstr ""
352
354
353
355
#: ../../library/cmath.rst:314
354
356
msgid ""
355
357
"Kahan, W: Branch cuts for complex elementary functions; or, Much ado about "
356
- "nothing's sign bit. In Iserles, A., and Powell, M. (eds.), The state of the"
357
- " art in numerical analysis. Clarendon Press (1987) pp165--211."
358
+ "nothing's sign bit. In Iserles, A., and Powell, M. (eds.), The state of the "
359
+ "art in numerical analysis. Clarendon Press (1987) pp165--211."
358
360
msgstr ""
0 commit comments