Région de recherche :

Date :

https://docs.python.org › fr › 3.5 › library › math.html

9.2. Fonctions mathématiques — math — Documentation Python 3.5.10

9.2.2. Fonctions logarithme et exponentielle¶ math.exp (x) ¶ Renvoie e**x. math.expm1 (x) ¶ Renvoie e**x-1. Pour de petits flottants, la soustraction exp(x)-1 peut résulter en une perte significative de précision; la fonction expm1() fournit un moyen de calculer cette quantité en précision complète :

https://how.okpedia.org › fr › python › comment-calculer-le-logarithme-en-python

[Python] Comment calculer le logarithme - Okpedia

Comment calculer le logarithme en Python. Pour calculer le logarithme d'un nombre avec le langage python, nous utilisons la fonction log () du module math. Le premier argument (x) est le nombre réel du logarithme. Le second argument (b) indique la base du logarithme. C'est optionnel.

https://toptips.fr › fonctions-python-log-pour-calculer-le-logarithme

Fonctions Python log() pour calculer le logarithme - toptips.fr

En Python, vous pouvez facilement calculer des logarithmes à l’aide des fonctions log() fournies par le module math. Cet article explore en profondeur les différentes fonctions log() disponibles en Python et vous guide dans leur utilisation pour des calculs de logarithmes précis et efficaces.

https://www.delftstack.com › fr › howto › numpy › natural-log-python

Logarithme naturel en Python - Delft Stack

Calculer le log naturel d’un nombre avec la fonction log() en Python. La fonction log() du package NumPy renvoie le log naturel du nombre passé dans les paramètres. Le logarithme naturel d’un nombre a la base e où e = 2.718.

https://www.digitalocean.com › community › tutorials › python-log-function-logarithm

Python log() Functions to Calculate Logarithm - DigitalOcean

Logarithms are used to depict and represent large numbers. The log is an inverse of the exponent. This article will dive into the Python log () functions. The logarithmic functions of Python help the users to find the log of numbers in a much easier and efficient manner.

Python log() Functions to Calculate Logarithm - DigitalOcean

https://www.w3schools.com › python › ref_math_log.asp

Python math.log() Method - W3Schools

Description. x. Required. Specifies the value to calculate the logarithm for. If the value is 0 or a negative number, it returns a ValueError. If the value is not a number, it returns a TypeError. base.

https://www.geeksforgeeks.org › log-functions-python

Log functions in Python - GeeksforGeeks

Python offers many inbuilt logarithmic functions under the module “ math ” which allows us to compute logs using a single line. There are 4 variants of logarithmic functions, all of which are discussed in this article.

https://fr.moonbooks.org › ... › Comment-calculer-le-logarithme-naturel-neperien-avec-python-

Comment calculer le logarithme naturel (népérien) avec python - Moonbooks

Exemples de comment calculer le logarithme naturel (népérien) avec python. Table des matières. Calculer le logarithme népérien avec le module math. Calculer le logarithme népérien avec numpy. Tracer la fonction logarithme népérien avec matplotlib. Calculer le logarithme en base 10.

Comment calculer le logarithme naturel (népérien) avec python - Moonbooks

https://www.delftstack.com › fr › howto › python › log-base-2-in-python

Calculer le logarithme base 2 d'un nombre en Python

Log Base 2 d’un nombre en utilisant la bibliothèque math en Python. Il existe deux fonctions de la bibliothèque math que nous pouvons utiliser pour calculer log avec la base 2. La première méthode utilise la fonction log(), et la seconde méthode utilise la fonction log2(). La fonction log() accepte deux arguments.

Calculer le logarithme base 2 d'un nombre en Python

https://note.nkmk.me › en › python-math-exp-log

Power and logarithmic functions in Python (exp, log, log10, log2)

In Python, you can calculate power and logarithmic functions with the math module. math - Power and logarithmic functions — Mathematical functions — Python 3.11.4 documentation. Contents. Euler's number (Napier's constant): math.e. Exponentiation: **, pow(), math.pow() Square root: math.sqrt() Natural exponential functions: math.exp()