Wie soll ich das Protokoll für die Basis zwei in Python berechnen? Z.B. Ich habe diese Gleichung, in der ich Log Base 2 verwende
import math
e = -(t/T)* math.log((t/T)[, 2])
Wie soll ich das Protokoll für die Basis zwei in Python berechnen? Z.B. Ich habe diese Gleichung, in der ich Log Base 2 verwende
import math
e = -(t/T)* math.log((t/T)[, 2])
Antworten:
Das ist gut zu wissen
Sie müssen aber auch wissen, dass
math.log
ein optionales zweites Argument erforderlich ist, mit dem Sie die Basis angeben können:
In [22]: import math
In [23]: math.log?
Type: builtin_function_or_method
Base Class: <type 'builtin_function_or_method'>
String Form: <built-in function log>
Namespace: Interactive
Docstring:
log(x[, base]) -> the logarithm of x to the given base.
If the base not specified, returns the natural logarithm (base e) of x.
In [25]: math.log(8,2)
Out[25]: 3.0
base
Argument in Version 2.3 hinzugefügt, übrigens.
?
) ist die dynamische Objektinspektion .
math.log2(x)
import math
log2 = math.log(x, 2.0)
log2 = math.log2(x) # python 3.4 or later
math.frexp(x)
Wenn Sie nur den ganzzahligen Teil der Protokollbasis 2 einer Gleitkommazahl benötigen, ist das Extrahieren des Exponenten ziemlich effizient:
log2int_slow = int(math.floor(math.log(x, 2.0)))
log2int_fast = math.frexp(x)[1] - 1
Python frexp () ruft die C-Funktion frexp () auf, die nur den Exponenten erfasst und optimiert .
Python frexp () gibt ein Tupel (Mantisse, Exponent) zurück. So [1]
bekommt der Exponententeil.
Für ganzzahlige Potenzen von 2 ist der Exponent eins mehr als Sie vielleicht erwarten. Zum Beispiel wird 32 als 0,5x2⁶ gespeichert. Dies erklärt das - 1
Obige. Funktioniert auch für 1/32, das als 0,5x2⁻⁴ gespeichert ist.
Böden in Richtung negativer Unendlichkeit, also ist log₂31 4 nicht 5. log₂ (1/17) ist -5 nicht -4.
x.bit_length()
Wenn sowohl Eingabe als auch Ausgabe Ganzzahlen sind, kann diese native Ganzzahlmethode sehr effizient sein:
log2int_faster = x.bit_length() - 1
- 1
weil 2ⁿ n + 1 Bits benötigt. Funktioniert für sehr große ganze Zahlen, z 2**10000
.
Böden in Richtung negativer Unendlichkeit, also ist log₂31 4 nicht 5. log₂ (1/17) ist -5 nicht -4.
Wenn Sie mit Python 3.4 oder höher arbeiten, verfügt es bereits über eine integrierte Funktion zum Berechnen von log2 (x).
import math
'finds log base2 of x'
answer = math.log2(x)
Wenn Sie eine ältere Version von Python verwenden, können Sie dies tun
import math
'finds log base2 of x'
answer = math.log(x)/math.log(2)
Verwenden von numpy:
In [1]: import numpy as np
In [2]: np.log2?
Type: function
Base Class: <type 'function'>
String Form: <function log2 at 0x03049030>
Namespace: Interactive
File: c:\python26\lib\site-packages\numpy\lib\ufunclike.py
Definition: np.log2(x, y=None)
Docstring:
Return the base 2 logarithm of the input array, element-wise.
Parameters
----------
x : array_like
Input array.
y : array_like
Optional output array with the same shape as `x`.
Returns
-------
y : ndarray
The logarithm to the base 2 of `x` element-wise.
NaNs are returned where `x` is negative.
See Also
--------
log, log1p, log10
Examples
--------
>>> np.log2([-1, 2, 4])
array([ NaN, 1., 2.])
In [3]: np.log2(8)
Out[3]: 3.0
http://en.wikipedia.org/wiki/Binary_logarithm
def lg(x, tol=1e-13):
res = 0.0
# Integer part
while x<1:
res -= 1
x *= 2
while x>=2:
res += 1
x /= 2
# Fractional part
fp = 1.0
while fp>=tol:
fp /= 2
x *= x
if x >= 2:
x /= 2
res += fp
return res
Versuche dies ,
import math
print(math.log(8,2)) # math.log(number,base)
In Python 3 oder höher hat die Matheklasse die folgenden Funktionen
import math
math.log2(x)
math.log10(x)
math.log1p(x)
oder Sie können im Allgemeinen math.log(x, base)
für jede Basis verwenden, die Sie möchten.
log_base_2 (x) = log (x) / log (2)
Vergessen Sie nicht, dass log [Basis A] x = log [Basis B] x / log [Basis B] A. .
Wenn Sie also nur log
(für natürliches Protokoll) und log10
(für Basis-10-Protokoll) haben, können Sie verwenden
myLog2Answer = log10(myInput) / log10(2)
math.log()
Anruf entfernen. Hast du es versucht?