-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathcmath.po
342 lines (299 loc) · 16.2 KB
/
cmath.po
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 1990-2021, Python Software Foundation
# This file is distributed under the same license as the Python package.
#
# Translators:
# tomo, 2017
# 秘湯 <[email protected]>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Python 2.7\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-01 01:01+0900\n"
"PO-Revision-Date: 2019-09-01 05:18+0000\n"
"Last-Translator: tomo\n"
"Language-Team: Japanese (http://www.transifex.com/python-doc/python-27/"
"language/ja/)\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: ../../library/cmath.rst:2
msgid ":mod:`cmath` --- Mathematical functions for complex numbers"
msgstr ":mod:`cmath` --- 複素数のための数学関数"
#: ../../library/cmath.rst:8
msgid ""
"This module is always available. It provides access to mathematical "
"functions for complex numbers. The functions in this module accept "
"integers, floating-point numbers or complex numbers as arguments. They will "
"also accept any Python object that has either a :meth:`__complex__` or a :"
"meth:`__float__` method: these methods are used to convert the object to a "
"complex or floating-point number, respectively, and the function is then "
"applied to the result of the conversion."
msgstr ""
"このモジュールは常に利用できます。提供しているのは複素数を扱う数学関数へのア"
"クセス手段です。このモジュール中の関数は整数、浮動小数点数または複素数を引数"
"にとります。また、 :meth:`__complex__` または :meth:`__float__` どちらかのメ"
"ソッドを提供している Python オブジェクトも受け付けます。これらのメソッドはそ"
"のオブジェクトを複素数または浮動小数点数に変換するのにそれぞれ使われ、呼び出"
"された関数はそうして変換された結果を利用します。"
#: ../../library/cmath.rst:18
msgid ""
"On platforms with hardware and system-level support for signed zeros, "
"functions involving branch cuts are continuous on *both* sides of the branch "
"cut: the sign of the zero distinguishes one side of the branch cut from the "
"other. On platforms that do not support signed zeros the continuity is as "
"specified below."
msgstr ""
"ハードウェア及びシステムレベルでの符号付きゼロのサポートがあるプラットフォー"
"ムでは、分枝切断 (branch cut) の関わる関数において切断された *両側* の分枝で"
"連続になります。ゼロの符号でどちらの分枝であるかを区別するのです。符号付きゼ"
"ロがサポートされないプラットフォームでは連続性は以下の仕様で述べるようになり"
"ます。"
#: ../../library/cmath.rst:26
msgid "Conversions to and from polar coordinates"
msgstr "極座標変換"
#: ../../library/cmath.rst:28
msgid ""
"A Python complex number ``z`` is stored internally using *rectangular* or "
"*Cartesian* coordinates. It is completely determined by its *real part* ``z."
"real`` and its *imaginary part* ``z.imag``. In other words::"
msgstr ""
"Python の複素数 ``z`` は内部的には *直交座標* もしくは *デカルト座標* と呼ば"
"れる座標を使って格納されています。この座標はその複素数の *実部* ``z.real`` "
"と *虚部* ``z.imag`` で決まります。言い換えると::"
#: ../../library/cmath.rst:35
msgid ""
"*Polar coordinates* give an alternative way to represent a complex number. "
"In polar coordinates, a complex number *z* is defined by the modulus *r* and "
"the phase angle *phi*. The modulus *r* is the distance from *z* to the "
"origin, while the phase *phi* is the counterclockwise angle, measured in "
"radians, from the positive x-axis to the line segment that joins the origin "
"to *z*."
msgstr ""
"*極座標* は複素数を表現する別の方法です。極座標では、複素数 *z* は半径 *r* と"
"位相角 *phi* で定義されます。半径 *r* は *z* から原点までの距離です。位相 "
"*phi* は x 軸の正の部分から原点と *z* を結んだ線分までの角度を反時計回りにラ"
"ジアンで測った値です。"
#: ../../library/cmath.rst:42
msgid ""
"The following functions can be used to convert from the native rectangular "
"coordinates to polar coordinates and back."
msgstr ""
"次の関数はネイティブの直交座標を極座標に変換したりその逆を行うのに使えます。"
#: ../../library/cmath.rst:47
msgid ""
"Return the phase of *x* (also known as the *argument* of *x*), as a float. "
"``phase(x)`` is equivalent to ``math.atan2(x.imag, x.real)``. The result "
"lies in the range [-π, π], and the branch cut for this operation lies along "
"the negative real axis, continuous from above. On systems with support for "
"signed zeros (which includes most systems in current use), this means that "
"the sign of the result is the same as the sign of ``x.imag``, even when ``x."
"imag`` is zero::"
msgstr ""
"*x* の位相 (*x* の *偏角* とも呼びます) を浮動小数点数で返します。"
"``phase(x)`` は ``math.atan2(x.imag, x.real)`` と同等です。返り値は [-π, π] "
"の範囲にあり、この演算の分枝切断は負の実軸に沿って延びていて、上から連続で"
"す。(現在のほとんどのシステムはそうですが) 符号付きゼロをサポートしているシス"
"テムでは、結果の符号は ``x.imag`` がゼロであってさえ ``x.imag`` の符号と等し"
"くなります::"
#: ../../library/cmath.rst:66
msgid ""
"The modulus (absolute value) of a complex number *x* can be computed using "
"the built-in :func:`abs` function. There is no separate :mod:`cmath` module "
"function for this operation."
msgstr ""
"複素数 *x* のモジュラス (絶対値) は組み込みの :func:`abs` 関数で計算できま"
"す。この演算を行う :mod:`cmath` モジュールの関数はありません。"
#: ../../library/cmath.rst:73
msgid ""
"Return the representation of *x* in polar coordinates. Returns a pair ``(r, "
"phi)`` where *r* is the modulus of *x* and phi is the phase of *x*. "
"``polar(x)`` is equivalent to ``(abs(x), phase(x))``."
msgstr ""
"*x* の極座標表現を返します。*x* の半径 *r* と *x* の位相 *phi* の組 ``(r, "
"phi)`` を返します。``polar(x)`` は ``(abs(x), phase(x))`` に等しいです。"
#: ../../library/cmath.rst:83
msgid ""
"Return the complex number *x* with polar coordinates *r* and *phi*. "
"Equivalent to ``r * (math.cos(phi) + math.sin(phi)*1j)``."
msgstr ""
"極座標 *r*, *phi* を持つ複素数 *x* を返します。値は ``r * (math.cos(phi) + "
"math.sin(phi)*1j)`` に等しいです。"
#: ../../library/cmath.rst:90
msgid "Power and logarithmic functions"
msgstr "指数関数と対数関数"
#: ../../library/cmath.rst:94
msgid "Return the exponential value ``e**x``."
msgstr "指数 ``e**x`` を返します。"
#: ../../library/cmath.rst:99
msgid ""
"Returns the logarithm of *x* to the given *base*. If the *base* is not "
"specified, returns the natural logarithm of *x*. There is one branch cut, "
"from 0 along the negative real axis to -∞, continuous from above."
msgstr ""
"*base* を底とする *x* の対数を返します。もし *base* が指定されていない場合に"
"は、*x* の自然対数を返します。分枝切断を一つもち、``0`` から負の実数軸に沿っ"
"て ``-∞`` へと延びており、上から連続しています。"
#: ../../library/cmath.rst:103
msgid "*base* argument added."
msgstr "引数 *base* を追加"
#: ../../library/cmath.rst:109
msgid ""
"Return the base-10 logarithm of *x*. This has the same branch cut as :func:"
"`log`."
msgstr ""
"*x* の底を 10 とする対数を返します。 :func:`log` と同じ分枝切断を持ちます。"
#: ../../library/cmath.rst:115
msgid ""
"Return the square root of *x*. This has the same branch cut as :func:`log`."
msgstr "*x* の平方根を返します。 :func:`log` と同じ分枝切断を持ちます。"
#: ../../library/cmath.rst:119
msgid "Trigonometric functions"
msgstr "三角関数"
#: ../../library/cmath.rst:123
msgid ""
"Return the arc cosine of *x*. There are two branch cuts: One extends right "
"from 1 along the real axis to ∞, continuous from below. The other extends "
"left from -1 along the real axis to -∞, continuous from above."
msgstr ""
"*x* の逆余弦を返します。この関数には二つの分枝切断(branch cut)があります: 一"
"つは 1 から右側に実数軸に沿って∞へと延びていて、下から連続しています。もう一"
"つは -1 から左側に実数軸に沿って -∞へと延びていて、上から連続しています。"
#: ../../library/cmath.rst:130
msgid ""
"Return the arc sine of *x*. This has the same branch cuts as :func:`acos`."
msgstr "*x* の逆正弦を返します。 :func:`acos` と同じ分枝切断を持ちます。"
#: ../../library/cmath.rst:135
msgid ""
"Return the arc tangent of *x*. There are two branch cuts: One extends from "
"``1j`` along the imaginary axis to ``∞j``, continuous from the right. The "
"other extends from ``-1j`` along the imaginary axis to ``-∞j``, continuous "
"from the left."
msgstr ""
"*x* の逆正接を返します。二つの分枝切断があります: 一つは ``1j`` から虚数軸に"
"沿って ``∞j`` へと延びており、右から連続です。もう一つは ``-1j`` から虚数軸に"
"沿って ``-∞j`` へと延びており、左から連続です。"
#: ../../library/cmath.rst:140
msgid "direction of continuity of upper cut reversed"
msgstr "上側の分割での連続な方向が逆転しました。"
#: ../../library/cmath.rst:146
msgid "Return the cosine of *x*."
msgstr "*x* の余弦を返します。"
#: ../../library/cmath.rst:151
msgid "Return the sine of *x*."
msgstr "*x* の正弦を返します。"
#: ../../library/cmath.rst:156
msgid "Return the tangent of *x*."
msgstr "*x* の正接を返します。"
#: ../../library/cmath.rst:160
msgid "Hyperbolic functions"
msgstr "双曲線関数"
#: ../../library/cmath.rst:164
msgid ""
"Return the inverse hyperbolic cosine of *x*. There is one branch cut, "
"extending left from 1 along the real axis to -∞, continuous from above."
msgstr ""
"*x* の逆双曲線余弦を返します。分枝切断が一つあり、1 の左側に実数軸に沿って -∞"
"へと延びていて、上から連続しています。"
#: ../../library/cmath.rst:170
msgid ""
"Return the inverse hyperbolic sine of *x*. There are two branch cuts: One "
"extends from ``1j`` along the imaginary axis to ``∞j``, continuous from the "
"right. The other extends from ``-1j`` along the imaginary axis to ``-∞j``, "
"continuous from the left."
msgstr ""
"*x* の逆双曲線正弦を返します。二つの分枝切断があります: 一つは ``1j`` から虚"
"数軸に沿って ``∞j`` へと延びており、右から連続です。もう一つは ``-1j`` から虚"
"数軸に沿って ``-∞j`` へと延びており、左から連続です。"
#: ../../library/cmath.rst:175
msgid "branch cuts moved to match those recommended by the C99 standard"
msgstr "分枝切断が C99 標準で推奨されたものに合わせて動かされました。"
#: ../../library/cmath.rst:181
msgid ""
"Return the inverse hyperbolic tangent of *x*. There are two branch cuts: One "
"extends from ``1`` along the real axis to ``∞``, continuous from below. The "
"other extends from ``-1`` along the real axis to ``-∞``, continuous from "
"above."
msgstr ""
"*x* の逆双曲線正接を返します。二つの分枝切断があります: 一つは ``1`` から実数"
"軸に沿って ``∞`` へと延びており、下から連続です。もう一つは ``-1`` から実数軸"
"に沿って ``-∞`` へと延びており、上から連続です。"
#: ../../library/cmath.rst:186
msgid "direction of continuity of right cut reversed"
msgstr "右側の分割での連続な方向が逆転しました。"
#: ../../library/cmath.rst:192
msgid "Return the hyperbolic cosine of *x*."
msgstr "*x* の双曲線余弦を返します。"
#: ../../library/cmath.rst:197
msgid "Return the hyperbolic sine of *x*."
msgstr "*x* の双曲線正弦を返します。"
#: ../../library/cmath.rst:202
msgid "Return the hyperbolic tangent of *x*."
msgstr "*x* の双曲線正接を返します。"
#: ../../library/cmath.rst:206
msgid "Classification functions"
msgstr "類別関数"
#: ../../library/cmath.rst:210
msgid ""
"Return ``True`` if the real or the imaginary part of x is positive or "
"negative infinity."
msgstr ""
"*x* の実数部または虚数部が正または負の無限大であれば ``True`` を返します。"
#: ../../library/cmath.rst:218
msgid ""
"Return ``True`` if the real or imaginary part of x is not a number (NaN)."
msgstr "*x* の実数部または虚数部が非数 (NaN) であれば ``True`` を返します。"
#: ../../library/cmath.rst:224
msgid "Constants"
msgstr "定数"
#: ../../library/cmath.rst:229
msgid "The mathematical constant *π*, as a float."
msgstr "定数 *π* (円周率)で、浮動小数点数です。"
#: ../../library/cmath.rst:234
msgid "The mathematical constant *e*, as a float."
msgstr "定数 *e* (自然対数の底)で、浮動小数点数です。"
#: ../../library/cmath.rst:238
msgid ""
"Note that the selection of functions is similar, but not identical, to that "
"in module :mod:`math`. The reason for having two modules is that some users "
"aren't interested in complex numbers, and perhaps don't even know what they "
"are. They would rather have ``math.sqrt(-1)`` raise an exception than "
"return a complex number. Also note that the functions defined in :mod:"
"`cmath` always return a complex number, even if the answer can be expressed "
"as a real number (in which case the complex number has an imaginary part of "
"zero)."
msgstr ""
":mod:`math` と同じような関数が選ばれていますが、全く同じではないので注意して"
"ください。機能を二つのモジュールに分けているのは、複素数に興味がなかったり、"
"もしかすると複素数とは何かすら知らないようなユーザがいるからです。そういった"
"人たちはむしろ、 ``math.sqrt(-1)`` が複素数を返すよりも例外を送出してほしいと"
"考えます。また、 :mod:`cmath` で定義されている関数は、たとえ結果が実数で表現"
"可能な場合 (虚数部がゼロの複素数) でも、常に複素数を返すので注意してくださ"
"い。"
#: ../../library/cmath.rst:246
msgid ""
"A note on branch cuts: They are curves along which the given function fails "
"to be continuous. They are a necessary feature of many complex functions. "
"It is assumed that if you need to compute with complex functions, you will "
"understand about branch cuts. Consult almost any (not too elementary) book "
"on complex variables for enlightenment. For information of the proper "
"choice of branch cuts for numerical purposes, a good reference should be the "
"following:"
msgstr ""
"分枝切断(branch cut)に関する注釈: 分枝切断をもつ曲線上では、与えられた関数は"
"連続でありえなくなります。これらは多くの複素関数における必然的な特性です。複"
"素関数を計算する必要がある場合、これらの分枝に関して理解しているものと仮定し"
"ています。悟りに至るために何らかの(到底基礎的とはいえない)複素数に関する書を"
"ひもといてください。数値計算を目的とした分枝切断の正しい選択方法についての情"
"報としては、以下がよい参考文献となります:"
#: ../../library/cmath.rst:256
msgid ""
"Kahan, W: Branch cuts for complex elementary functions; or, Much ado about "
"nothing's sign bit. In Iserles, A., and Powell, M. (eds.), The state of the "
"art in numerical analysis. Clarendon Press (1987) pp165--211."
msgstr ""
"Kahan, W: Branch cuts for complex elementary functions; or, Much ado about "
"nothings's sign bit. In Iserles, A., and Powell, M. (eds.), The state of "
"the art in numerical analysis. Clarendon Press (1987) pp165--211."