Python Numpy.log() - Logarithmus

Jinku Hu 30 Januar 2023
  1. Syntax von numpy.log()
  2. Beispiel-Codes: numpy.log()
  3. Beispielcodes: numpy.log2() - Numpy Log Base 2
  4. Beispielcodes: numpy.log10() - Numpy Log Base 10
Python Numpy.log() - Logarithmus

Die Funktion Numpy.log() berechnet den natürlichen Logarithmus jedes Elements im gegebenen Array.

numpy natürlicher Logarithmus

Syntax von numpy.log()

numpy.log(arr)

Parameter

arr Eingabe-Array

Zurück

Es gibt ein Array mit dem natürlichen Logarithmus jedes Elements im Eingabearray zurück.

Beispiel-Codes: numpy.log()

import numpy as np

arr = [1, np.e, np.e**2, np.e**3]
print(np.log(arr))

Ausgabe:

[0. 1. 2. 3.]

Beispielcodes: numpy.log2() - Numpy Log Base 2

numpy.log2() ist ähnlich wie numpy.log(), hat aber die Basis als 2 anstelle von e.

numpy.log2

import numpy as np

arr = [1, 2, np.e, 4]
print(np.log2(arr))

Ausgabe:

[0. 1. 1.44269504 2.]

Beispielcodes: numpy.log10() - Numpy Log Base 10

numpy.log10() ist ähnlich wie numpy.log(), hat aber die Basis 10 anstelle von e.

numpy.log10

import numpy as np

arr = [1, np.e, 10, 100]
print(np.log10(arr))

Ausgabe:

[0. 0.43429448 1. 2.]
Autor: Jinku Hu
Jinku Hu avatar Jinku Hu avatar

Founder of DelftStack.com. Jinku has worked in the robotics and automotive industries for over 8 years. He sharpened his coding skills when he needed to do the automatic testing, data collection from remote servers and report creation from the endurance test. He is from an electrical/electronics engineering background but has expanded his interest to embedded electronics, embedded programming and front-/back-end programming.

LinkedIn Facebook