About 9,970,000 results
Open links in new tab
  1. c - Efficient implementation of natural logarithm (ln) and ...

    ln (y) = ln (2 n x) = ln (2 n) + ln (x) = ln (2) n + ln (x) So first find the highest power of 2, which is still smaller than the number (See: What is the fastest/most efficient way to find the highest set bit (msb) …

  2. How do you do natural logs (e.g. "ln()") with numpy in Python?

    Using numpy, how can I do the following: ln(x) Is it equivalent to: np.log(x) I apologise for such a seemingly trivial question, but my understanding of the difference between log and ln is that ...

  3. R: Using equation with natural logarithm in nls - Stack Overflow

    44 In R, log is the natural logarithm. In calculators, log usually means base 10 logarithm. To achieve that in R you can use the log10 function.

  4. How can you use Ln function in C programing? - Stack Overflow

    Dec 10, 2015 · Header file math.h is for mathematical functions like cos,sin, tan.. But how to write the ln function and not log?

  5. ln (Natural Log) in Python - Stack Overflow

    Also, please don't be offended, but I would advise you to brush up on your background knowledge regarding logarithms. Your code seems to imply that you think ln is a constant that is being multiplied …

  6. java - How to make LN (Log Natural) function? - Stack Overflow

    Dec 25, 2017 · I want to make a simple math project to count Exponential regression. How to make LN (Log Natural) function in Android Studio?

  7. How to write a simple logarithm function without math.h?

    Apr 11, 2023 · That means if you have a function that computes the binary logarithm, you can use it to deduce the decimal logarithm or the natural (base e) logarithm. In particular, log10(x) = log2(x) / …

  8. Logarithm is different using VBA and Excel function

    Jul 24, 2015 · VBA's Log function is the natural log. If you want log base ten you will have to use the logarithmic identity for converting bases. Like so: Log(x)/Log(10).

  9. Very fast approximate Logarithm (natural log) function in C++?

    A custom implementation of a logarithm function typically involves separating a binary floating-point argument x into an exponent e and a mantissa m, such that x = m * 2 e, therefore log(x) = log(2) * e …

  10. VBA Excel 2010 - LN function for a range - Stack Overflow

    Jan 21, 2014 · 0 when i'm using LN function in excel it allows me to select a range, yet when trying to use the same function in vba the argument must be double, how to tackle this problem?