From ee40cb151d855da3a1306bb0ef53ab7544410cb3 Mon Sep 17 00:00:00 2001 From: Abdelrahman Date: Sun, 4 Feb 2024 20:53:00 +0100 Subject: [PATCH] log_base_e Funktion header --- src/c/funktionen.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/c/funktionen.h b/src/c/funktionen.h index fa73c03..1401fde 100644 --- a/src/c/funktionen.h +++ b/src/c/funktionen.h @@ -19,4 +19,7 @@ float absolute(float x); // Function to calculate the logarithm (base 10) of a number float logarithm(float x); +// Function to calculate the natural logarithm (base e) of a number +float naturalLogarithm(float x); + #endif \ No newline at end of file