@@ -146,6 +146,11 @@ msgid ""
146
146
"along the negative real axis. The sign of the result is the same as the "
147
147
"sign of ``z.imag``, even when ``z.imag`` is zero::"
148
148
msgstr ""
149
+ "Retorna a fase de *z* (também conhecido como *argumento* de *z*), como um "
150
+ "ponto flutuante. ``phase(z)`` equivale a ``math.atan2(z.imag, z.real)``. O "
151
+ "resultado está no intervalo [-\\ *π*, *π*], e o corte de ramificação para "
152
+ "esta operação está ao longo do eixo real negativo. O sinal do resultado é "
153
+ "igual ao sinal de ``z.imag``, mesmo quando ``z.imag`` é zero::"
149
154
150
155
#: ../../library/cmath.rst:66
151
156
msgid ""
@@ -165,19 +170,27 @@ msgid ""
165
170
"the built-in :func:`abs` function. There is no separate :mod:`cmath` module "
166
171
"function for this operation."
167
172
msgstr ""
173
+ "O módulo (valor absoluto) de um número complexo *z* pode ser calculado "
174
+ "usando a função embutida :func:`abs`. Não há função do módulo :mod:`cmath` "
175
+ "separada para esta operação."
168
176
169
177
#: ../../library/cmath.rst:81
170
178
msgid ""
171
179
"Return the representation of *z* in polar coordinates. Returns a pair ``(r, "
172
180
"phi)`` where *r* is the modulus of *z* and *phi* is the phase of *z*. "
173
181
"``polar(z)`` is equivalent to ``(abs(z), phase(z))``."
174
182
msgstr ""
183
+ "Retorna a representação de *z* em coordenadas polares. Retorna um par ``(r, "
184
+ "phi)`` onde *r* é o módulo de *z* e phi é a fase de *z*. ``polar(z)`` "
185
+ "equivale a ``(abs(z), phase(z))``."
175
186
176
187
#: ../../library/cmath.rst:89
177
188
msgid ""
178
189
"Return the complex number *z* with polar coordinates *r* and *phi*. "
179
190
"Equivalent to ``complex(r * math.cos(phi), r * math.sin(phi))``."
180
191
msgstr ""
192
+ "Retorna o número complexo *z* com coordenadas polares *r* e *phi*. Equivale "
193
+ "a ``complex(r * math.cos(phi), r * math.sin(phi))``."
181
194
182
195
#: ../../library/cmath.rst:94
183
196
msgid "Power and logarithmic functions"
@@ -188,24 +201,32 @@ msgid ""
188
201
"Return *e* raised to the power *z*, where *e* is the base of natural "
189
202
"logarithms."
190
203
msgstr ""
204
+ "Retorna *e* elevado à potência *z*, onde *e* é a base de logaritmos naturais."
191
205
192
206
#: ../../library/cmath.rst:104
193
207
msgid ""
194
208
"Return the logarithm of *z* to the given *base*. If the *base* is not "
195
209
"specified, returns the natural logarithm of *z*. There is one branch cut, "
196
210
"from 0 along the negative real axis to -∞."
197
211
msgstr ""
212
+ "Retorna o logaritmo de *z* para a *base* fornecida. Se a *base* não for "
213
+ "especificada, retorna o logaritmo natural de *z*. Há um corte de "
214
+ "ramificação, de 0 ao longo do eixo real negativo até -∞."
198
215
199
216
#: ../../library/cmath.rst:111
200
217
msgid ""
201
218
"Return the base-10 logarithm of *z*. This has the same branch cut as :func:"
202
219
"`log`."
203
220
msgstr ""
221
+ "Retorna o logaritmo de *z* na base 10. Este tem o mesmo corte de ramificação "
222
+ "que :func:`log`."
204
223
205
224
#: ../../library/cmath.rst:117
206
225
msgid ""
207
226
"Return the square root of *z*. This has the same branch cut as :func:`log`."
208
227
msgstr ""
228
+ "Retorna a raiz quadrada de *z*. Este tem o mesmo corte de ramificação que :"
229
+ "func:`log`."
209
230
210
231
#: ../../library/cmath.rst:121
211
232
msgid "Trigonometric functions"
@@ -217,30 +238,38 @@ msgid ""
217
238
"from 1 along the real axis to ∞. The other extends left from -1 along the "
218
239
"real axis to -∞."
219
240
msgstr ""
241
+ "Retorna o arco cosseno de *z*. Existem dois cortes de ramificação: um se "
242
+ "estende desde 1 ao longo do eixo real até ∞. O outro se estende para a "
243
+ "esquerda de -1 ao longo do eixo real até -∞."
220
244
221
245
#: ../../library/cmath.rst:132
222
246
msgid ""
223
247
"Return the arc sine of *z*. This has the same branch cuts as :func:`acos`."
224
248
msgstr ""
249
+ "Retorna o arco seno de *z*. Tem os mesmos cortes de ramificação que :func:"
250
+ "`acos`."
225
251
226
252
#: ../../library/cmath.rst:137
227
253
msgid ""
228
254
"Return the arc tangent of *z*. There are two branch cuts: One extends from "
229
255
"``1j`` along the imaginary axis to ``∞j``. The other extends from ``-1j`` "
230
256
"along the imaginary axis to ``-∞j``."
231
257
msgstr ""
258
+ "Retorna o arco tangente de *z*. Existem dois cortes de ramificação: Um se "
259
+ "estende de ``1j`` ao longo do eixo imaginário até ``∞j``. O outro se estende "
260
+ "de ``-1j`` ao longo do eixo imaginário até ``-∞j``."
232
261
233
262
#: ../../library/cmath.rst:144
234
263
msgid "Return the cosine of *z*."
235
- msgstr ""
264
+ msgstr "Retorna o cosseno de *z*. "
236
265
237
266
#: ../../library/cmath.rst:149
238
267
msgid "Return the sine of *z*."
239
- msgstr ""
268
+ msgstr "Retorna o seno de *z*. "
240
269
241
270
#: ../../library/cmath.rst:154
242
271
msgid "Return the tangent of *z*."
243
- msgstr ""
272
+ msgstr "Retorna a tangente de *z*. "
244
273
245
274
#: ../../library/cmath.rst:158
246
275
msgid "Hyperbolic functions"
@@ -251,32 +280,40 @@ msgid ""
251
280
"Return the inverse hyperbolic cosine of *z*. There is one branch cut, "
252
281
"extending left from 1 along the real axis to -∞."
253
282
msgstr ""
283
+ "Retorna o cosseno hiperbólico inverso de *z*. Há um corte de ramificação, "
284
+ "estendendo-se para a esquerda de 1 ao longo do eixo real até -∞."
254
285
255
286
#: ../../library/cmath.rst:168
256
287
msgid ""
257
288
"Return the inverse hyperbolic sine of *z*. There are two branch cuts: One "
258
289
"extends from ``1j`` along the imaginary axis to ``∞j``. The other extends "
259
290
"from ``-1j`` along the imaginary axis to ``-∞j``."
260
291
msgstr ""
292
+ "Retorna o seno hiperbólico inverso de *z*. Existem dois cortes de "
293
+ "ramificação: Um se estende de ``1j`` ao longo do eixo imaginário até ``∞j``. "
294
+ "O outro se estende de ``-1j`` ao longo do eixo imaginário até ``-∞j``."
261
295
262
296
#: ../../library/cmath.rst:175
263
297
msgid ""
264
298
"Return the inverse hyperbolic tangent of *z*. There are two branch cuts: One "
265
299
"extends from ``1`` along the real axis to ``∞``. The other extends from "
266
300
"``-1`` along the real axis to ``-∞``."
267
301
msgstr ""
302
+ "Retorna a tangente hiperbólica inversa de *z*. Existem dois cortes de "
303
+ "ramificação: Um se estende de ``1`` ao longo do eixo real até ``∞``. O outro "
304
+ "se estende de ``-1`` ao longo do eixo real até ``-∞``."
268
305
269
306
#: ../../library/cmath.rst:182
270
307
msgid "Return the hyperbolic cosine of *z*."
271
- msgstr ""
308
+ msgstr "Retorna o cosseno hiperbólico de *z*. "
272
309
273
310
#: ../../library/cmath.rst:187
274
311
msgid "Return the hyperbolic sine of *z*."
275
- msgstr ""
312
+ msgstr "Retorna o seno hiperbólico de *z*. "
276
313
277
314
#: ../../library/cmath.rst:192
278
315
msgid "Return the hyperbolic tangent of *z*."
279
- msgstr ""
316
+ msgstr "Retorna a tangente hiperbólica de *z*. "
280
317
281
318
#: ../../library/cmath.rst:196
282
319
msgid "Classification functions"
@@ -287,18 +324,24 @@ msgid ""
287
324
"Return ``True`` if both the real and imaginary parts of *z* are finite, and "
288
325
"``False`` otherwise."
289
326
msgstr ""
327
+ "Retorna ``True`` se ambas as partes real e imaginária de *z* forem finitas, "
328
+ "e ``False`` caso contrário."
290
329
291
330
#: ../../library/cmath.rst:208
292
331
msgid ""
293
332
"Return ``True`` if either the real or the imaginary part of *z* is an "
294
333
"infinity, and ``False`` otherwise."
295
334
msgstr ""
335
+ "Retorna ``True`` se ou a parte real ou a imaginária de *z* for infinita, e "
336
+ "``False`` caso contrário."
296
337
297
338
#: ../../library/cmath.rst:214
298
339
msgid ""
299
340
"Return ``True`` if either the real or the imaginary part of *z* is a NaN, "
300
341
"and ``False`` otherwise."
301
342
msgstr ""
343
+ "Retorna ``True`` se ou a parte real ou a imaginária de *z* for NaN, e "
344
+ "``False`` caso contrário."
302
345
303
346
#: ../../library/cmath.rst:220
304
347
msgid ""
@@ -381,30 +424,30 @@ msgstr "A constante matemática *τ*, como um ponto flutuante."
381
424
382
425
#: ../../library/cmath.rst:274
383
426
msgid "Floating-point positive infinity. Equivalent to ``float('inf')``."
384
- msgstr "Infinito positivo de ponto flutuante. Equivalente a ``float('inf')``."
427
+ msgstr "Infinito positivo de ponto flutuante. Equivale a ``float('inf')``."
385
428
386
429
#: ../../library/cmath.rst:281
387
430
msgid ""
388
431
"Complex number with zero real part and positive infinity imaginary part. "
389
432
"Equivalent to ``complex(0.0, float('inf'))``."
390
433
msgstr ""
391
434
"Número complexo com parte real zero e parte imaginária infinita positiva. "
392
- "Equivalente a ``complex(0.0, float('inf'))``."
435
+ "Equivale a ``complex(0.0, float('inf'))``."
393
436
394
437
#: ../../library/cmath.rst:289
395
438
msgid ""
396
439
"A floating-point \" not a number\" (NaN) value. Equivalent to "
397
440
"``float('nan')``."
398
441
msgstr ""
399
- "Um valor de ponto flutuante \" não um número\" (NaN). Equivalente a "
442
+ "Um valor de ponto flutuante \" não um número\" (NaN). Equivale a "
400
443
"``float('nan')``."
401
444
402
445
#: ../../library/cmath.rst:297
403
446
msgid ""
404
447
"Complex number with zero real part and NaN imaginary part. Equivalent to "
405
448
"``complex(0.0, float('nan'))``."
406
449
msgstr ""
407
- "Número complexo com parte real zero e parte imaginária NaN. Equivalente a "
450
+ "Número complexo com parte real zero e parte imaginária NaN. Equivale a "
408
451
"``complex(0.0, float('nan'))``."
409
452
410
453
#: ../../library/cmath.rst:305
0 commit comments