The logarithm of a number is the exponent by which another fixed value, the base, has to be raised to produce that number.
This earlier question addresses some of the factors that might cause an algorithm to have O(log n) complexity. What …
algorithm big-o time-complexity complexity-theory logarithmI'm trying to write a Java program that can take values and put them into a formula involving log base 10. …
java logarithmThis is my first course in data structures and every lecture / TA lecture , we talk about O(log(n)) . This …
algorithm data-structures complexity-theory big-o logarithmWhat is the big-O complexity of the function (log n)k for any k?
algorithm math complexity-theory big-o logarithmMy knowledge of big-O is limited, and when log terms show up in the equation it throws me off even …
algorithm big-o time-complexity logarithmI'm trying to create a histogram of a data column and plot it logarithmically (y-axis) and I'm not sure why …
python matplotlib histogram logarithmIn the C++ standard libraries I found only a floating point log method. Now I use log to find the …
c++ floating-accuracy logarithmI need a log function for JavaScript, but it needs to be base 10. I can't see any listing for this, …
javascript math logarithmI have a linear scale that ranges form 0.1 to 10 with increments of change at 0.1: |----------[]----------| 0.1 5.0 10 However, the output really …
math logarithm