How Can You Use Ln Function in C Programing?
Header File Math. H Is for Mathematical Functions Like Cos, Sin, Tan. . but How to Write the Ln Function and Not Log? 7 3 Answers the C Function Log Is the...
Header file math.h is for mathematical functions like cos,sin, tan.. But how to write the ln function and not log?
3 Answers
Remember math at school: logA_B = logA_C/logB_C
double ln(double x) { return log(x); }
Or in a pinch
#define ln(x) log(x)