@@ -7,49 +7,49 @@ Pre-defined mathematical constants with quad precision accuracy.
77``` {eval-rst}
88.. data:: numpy_quaddtype.pi
99
10- The mathematical constant :math:`pi` (pi).
10+ The mathematical constant :math:`\ pi` (pi).
1111
12- Value : 3.14159265358979323846264338327950288...
12+ :value : 3.14159265358979323846264338327950288...
1313
1414 :type: QuadPrecision
1515
1616.. data:: numpy_quaddtype.e
1717
1818 Euler's number :math:`e`, the base of natural logarithms.
1919
20- Value : 2.71828182845904523536028747135266249...
20+ :value : 2.71828182845904523536028747135266249...
2121
2222 :type: QuadPrecision
2323
2424.. data:: numpy_quaddtype.log2e
2525
2626 The base-2 logarithm of :math:`e`: :math:`\log_{2}{e}`.
2727
28- Value : 1.44269504088896340735992468100189213...
28+ :value : 1.44269504088896340735992468100189213...
2929
3030 :type: QuadPrecision
3131
3232.. data:: numpy_quaddtype.log10e
3333
3434 The base-10 logarithm of :math:`e`: :math:`\log_{10}{e}`.
3535
36- Value : 0.43429448190325182765112891891660508...
36+ :value : 0.43429448190325182765112891891660508...
3737
3838 :type: QuadPrecision
3939
4040.. data:: numpy_quaddtype.ln2
4141
42- The natural logarithm of 2: :math:`\ln(2) `.
42+ The natural logarithm of 2: :math:`\log_{e}{2} `.
4343
44- Value : 0.69314718055994530941723212145817656...
44+ :value : 0.69314718055994530941723212145817656...
4545
4646 :type: QuadPrecision
4747
4848.. data:: numpy_quaddtype.ln10
4949
50- The natural logarithm of 10: :math:`\ln(10) `.
50+ The natural logarithm of 10: :math:`\log_{e}{10} `.
5151
52- Value : 2.30258509299404568401799145468436420...
52+ :value : 2.30258509299404568401799145468436420...
5353
5454 :type: QuadPrecision
5555```
@@ -61,41 +61,41 @@ Pre-defined mathematical constants with quad precision accuracy.
6161
6262 Machine epsilon: the smallest positive number such that :math:`1.0 + \epsilon \neq 1.0`.
6363
64- :math:`2^{-112}` or approximately :math:`1.93 \cdot 10^{-34}`.
64+ :value: : math:`2^{-112}` or approximately :math:`1.93 \cdot 10^{-34}`
6565
6666 :type: QuadPrecision
6767
6868.. data:: numpy_quaddtype.max_value
6969
7070 The largest representable finite quad-precision value.
7171
72- :math:`216383 \cdot (2 - 2^{-112})` or approximately :math:`1.19 \cdot 10^{4932} `.
72+ The largest negative representable finite quad-precision value is ``-numpy_quaddtype.max_value` `.
7373
74- The largest negative representable finite quad-precision value is `-numpy_quaddtype.max_value`.
74+ :value: :math:`216383 \cdot (2 - 2^{-112})` or approximately :math:`1.19 \cdot 10^{4932}`
7575
7676 :type: QuadPrecision
7777
7878.. data:: numpy_quaddtype.smallest_normal
7979
8080 The smallest positive normal (normalized, mantissa has a leading 1 bit) quad-precision value.
8181
82- :math:`2^{-16382} \cdot (1 - 2^{-112})` or approximately :math:`3.36 \cdot 10^{-4932}`.
82+ :value: : math:`2^{-16382} \cdot (1 - 2^{-112})` or approximately :math:`3.36 \cdot 10^{-4932}`
8383
8484 :type: QuadPrecision
8585
8686.. data:: numpy_quaddtype.smallest_subnormal
8787
8888 The smallest positive subnormal (denormalized, mantissa has a leading 0 bit) quad-precision value.
8989
90- :math:`2^{-16494}` or approximately :math:`6.48 \cdot 10^{-4966}`.
90+ :value: : math:`2^{-16494}` or approximately :math:`6.48 \cdot 10^{-4966}`
9191
9292 :type: QuadPrecision
9393
9494.. data:: numpy_quaddtype.resolution
9595
9696 The approximate decimal resolution of quad precision, i.e. `10 ** (-precision)`.
9797
98- :math:`10^{-33}`.
98+ :value: : math:`10^{-33}`
9999
100100 :type: QuadPrecision
101101```
0 commit comments