Python Numpy.log() - Logaritmo

Jinku Hu 30 gennaio 2023
  1. Sintassi di numpy.log()
  2. Codici di esempio: numpy.log()
  3. Codici di esempio: numpy.log2() - Numpy Log Base 2
  4. Codici di esempio: numpy.log10() - Numpy Log Base 10
Python Numpy.log() - Logaritmo

La funzione Numpy.log() calcola il logaritmo naturale di ogni elemento nell’array dato.

logaritmo naturale insensibile

Sintassi di numpy.log()

numpy.log(arr)

Parametri

arr matrice di input

Ritorno

Restituisce un array del logaritmo naturale di ogni elemento nell’array di input.

Codici di esempio: numpy.log()

import numpy as np

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

Produzione:

[0. 1. 2. 3.]

Codici di esempio: numpy.log2() - Numpy Log Base 2

numpy.log2() è simile a numpy.log(), ma ha come base 2 invece di e.

numpy log2

import numpy as np

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

Produzione:

[0. 1. 1.44269504 2.]

Codici di esempio: numpy.log10() - Numpy Log Base 10

numpy.log10() è simile a numpy.log(), ma ha come base 10 invece di e.

numpy log10

import numpy as np

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

Produzione:

[0. 0.43429448 1. 2.]
Autore: 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