Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

126
votes
16answers
13k views

What does O(log n) mean exactly?

I am currently learning about Big O Notation running times and amortized times. I understand the notion of O(n) linear time, meaning that the size of the input affects the growth of the algorithm ...
19
votes
20answers
2k views

Where can I learn about logarithms?

I hear logarithms mentioned quite a lot in the programming context. They seem to be the solution to many problems and yet I can't seem to find a real-world way of making use of them. I've read the ...
15
votes
4answers
2k views

Any way to specify the base of math.log() in javascript?

I need a log function in my javascript but it needs to be base 10, I can't see any listing for this so I'm assuming it's not possible... any math wizards out there know of an approach for this? Or ...
14
votes
5answers
7k views

Histogram with Logarithmic Scale

I'm currently trying to generate a histogram in R on a logarithmic scale, but I haven't the clue where to start. I've looked on Google but none of the stuff I've seen really does what I want. To ...
13
votes
3answers
16k views

Plot logarithmic axes with matplotlib in python

I want to plot a graph with one logarithmic axis using matplotlib. I've been reading the docs, but can't figure out the syntax. I know that it's probably something simple like 'scale=linear' in the ...
11
votes
7answers
2k views

Finding the exponent of n = 2**x using bitwise operations [logarithm in base 2 of n]

Is there a straightforward way to extracting the exponent from a power of 2 using bitwise operations only? EDIT: Although the question was originally about bitwise operations, the thread is a good ...
11
votes
1answer
1k views

Is there an FFT that uses a logarithmic division of frequency?

Wikipedia's Wavelet article contains this text: The discrete wavelet transform is also less computationally complex, taking O(N) time as compared to O(N log N) for the fast Fourier transform. This ...
9
votes
2answers
348 views

What does “log*” mean?

I have come across the term O(log* N) in a book I'm reading on data structures. What does log* mean? I cannot find it on Google, and WolframAlpha doesn't understand it either.
9
votes
4answers
239 views

How to get lg2 of a number that is 2^k

What is the best solution for getting the base 2 logarithm of a number that I know is a power of two (2^k). (Of course I know only the value 2^k not k itself.) One way I thought of doing is by ...
8
votes
1answer
2k views

axis equal in a Matlab loglog plot

In Matlab the command 'axis equal': sets the aspect ratio so that equal tick mark increments on the x-,y- and z-axis are equal in size. This makes SPHERE(25) look like a sphere, instead ...
7
votes
6answers
3k views

How do you calculate log base 2 in Java for integers?

I use following function to calculate log base 2 for integers: public static int log2(int n){ if(n <= 0) throw new IllegalArgumentException(); return 31 - Integer.numberOfLeadingZeros(n); ...
7
votes
5answers
1k views

How to know when Big O is Logarithmic?

My question arises from the post "Plain English Explanation of Big O". I don't know the exact meaning for logarithmic complexity. I know that I can make a regression between the time and the number of ...
7
votes
8answers
5k views

Logarithm of a BigDecimal

How can I calculate the logarithm of a BigDecimal? Does anyone know of any algorithms I can use? My googling so far has come up with the (useless) idea of just converting to a double and using ...
6
votes
2answers
542 views

O(n log log n) time complexity question

Ok, I have a short program here: Given any n: i = 0; while (i < n) { k = 2; while (k < n) { sum += a[j] * b[k] k = k * k; } i++; } The asymptotic running time of ...
6
votes
3answers
242 views

Quick integer logarithm for special case

I have integer values ranging from 32-8191 which I want to map to a roughly logarithmic scale. If I were using base 2, I could just count the leading zero bits and map them into 8 slots, but this is ...
6
votes
2answers
1k views

What is the difference between 'log' and 'symlog'?

In matplotlib, I can set the axis scaling using either pyplot.xscale() or Axes.set_xscale(). Both functions accept three different scales: 'linear' | 'log' | 'symlog'. What is the difference between ...
5
votes
1answer
190 views

What is the complexity of the log function?

What is the complexity of the log base 10 function?
5
votes
4answers
250 views

What does Logn actually mean?

I am just studying for my class in Algorithms and have been looking over QuickSort. I understand the algorithm and how it works, but not how to get the number of comparisons it does, or what logn ...
5
votes
7answers
2k views

Log to the base 2 in python

How should I compute log to the base 2 in python. Eg. I have this equation where i am using log base 2 import math e = -(t/T)* math.log((t/T)[, 2])
5
votes
4answers
2k views

How to find a binary logarithm very fast? (O(1) at best)

Is there any very fast method to find a binary logarithm of an integer number? For example, given a number x=52656145834278593348959013841835216159447547700274555627155488768 such algorithm must find ...
5
votes
3answers
3k views

Logarithmic slider

I have a slider with steps 0-100; I want the range to be from 100 to 10,000,000. I've seen some functions scattered around the net but they're all in C++; i need it in javascript. Any ideas?
5
votes
5answers
921 views

What is the correct algorthm for a logarthmic distribution curve between two points?

I've read a bunch of tutorials about the proper way to generate a logarithmic distribution of tagcloud weights. Most of them group the tags into steps. This seems somewhat silly to me, so I ...
4
votes
3answers
182 views

Understanding Big O: log(n), nlog(n), nlog(n^2) for calculating complexities in algorithm [closed]

I understand these algorithm functions for calculating complexities in algorithm: n = input size O(n) = linear O(n2) = quadratic but I find it difficult to understand the logarithmic (lg) ...
4
votes
2answers
727 views

Finding log2() using sqrt()

This is an interview question I saw on some site. It was mentioned that the answer involves forming a recurrence of log2() as follows: double log2(double x ) { if ( x<=2 ) return 1; if ( ...
4
votes
5answers
478 views

Double equals 0 problem in C

I was implementing an algorithm to calculate natural logs in C. double taylor_ln(int z) { double sum = 0.0; double tmp = 1.0; int i = 1; while(tmp != 0.0) { tmp = (1.0 / i) * ...
4
votes
4answers
554 views

How can I compare the performance of log() and fp division in C++?

I’m using a log-based class in C++ to store very small floating-point values (as the values otherwise go beyond the scope of double). As I’m performing a large number of multiplications, this has the ...
4
votes
2answers
330 views

Pruning data for better viewing on loglog graph - Matlab

just wondering if anyone has any ideas about an issue I'm having. I have a fair amount of data that needs to be displayed on one graph. Two theoretical lines that are bold and solid are displayed on ...
4
votes
3answers
203 views

problem with arithmetic using logarthms to avoid numerical underflow

I have two lists of fractions; say A = [ 1/212, 5/212, 3/212, ... ] and B = [ 4/143, 7/143, 2/143, ... ]. If we define A' = a[0] * a[1] * a[2] * ... and B' = b[0] * b[1] * b[2] * ... I want to ...
3
votes
2answers
56 views

Logarithm with SSE, or switch to FPU?

I'm doing some statistics calculations. I need them to be fast, so I rewrote most of it to use SSE. I'm pretty much new to it, so I was wondering what the right approach here is: To my knowledge, ...
3
votes
2answers
114 views

Generating a range with irregular steps. Optimized

Does PHP have existing functionality for irregular step ranges, is there a common solution to provide this functionality, or how can the following function be optimized? The first function is the ...
3
votes
5answers
153 views

Compute Logarithm

I'm trying to write a method that takes in a base k and a value n to 2 decimal places, then computes the log base k of n without using any of Java's Math.log methods. Here's what I have so far: ...
3
votes
4answers
685 views

Problem with arithmetic using logarithms to avoid numerical underflow (take 2)

I have two lists of fractions; say A = [ 1/212, 5/212, 3/212, ... ] and B = [ 4/143, 7/143, 2/143, ... ]. If we define A' = a[0] * a[1] * a[2] * ... and B' = b[0] * b[1] * b[2] * ... I want to ...
3
votes
4answers
350 views

Algorithm for logarithmically converting a number to a percentage

I am looking for a way to convert any number to a percentage in the following way: 1.00 is 50% numbers below 1.00 approach 0% logarithmically numbers above 1.00 approach 100% logarithmically. x ...
3
votes
9answers
1k views

Why log(1000)/log(10) isn't the same as log10(1000)?

Today, I came across quite strange problem. I needed to calculate string length of a number, so I came up with this solution // say the number is 1000 (int)(log(1000)/log(10)) + 1 This is based on ...
3
votes
7answers
6k views

How to do an integer log2() in C++?

In the C++ standard libraries I found only a floating point log method. Now I use log to find the level of an index in a binary tree ( floor(2log(index)) ). Code (C++): int targetlevel = ...
3
votes
3answers
3k views

What kind of logarithm functions / methods are available in objective-c / cocoa-touch?

I've tried searching for logarithm + objective-c, but all I get is math test pages from teachers, or explanations what a logarithm is ;) I've got some measurements that are like 83912.41234 and ...
2
votes
2answers
114 views

Make y-axis logarithmic in histogram using R

Hi I'm making histogram using R, but the number of Y axis is so large that I need to turn it into logarithmic.See below my script: hplot<-read.table("libl") hplot pdf("first_end") hist(hplot$V1, ...
2
votes
4answers
218 views

What is the big-O of the function (log n)^2 + logn

What is the big-O complexity of the function (log n)k for any k?
2
votes
2answers
156 views

Numeric function for log of sum in Python

Given log(a) and log(b), I want to compute log(a+b) (in a numerically stable way). I wrote a little function for this: def log_add(logA,logB): if logA == log(0): return logB if ...
2
votes
1answer
58 views

How to group the closest locations nearby given lat and long?

Imaging that I have an array of places, and each item include name, lat and long of that place. Now I want to group nearby items using a radius in miles for example. How do I achieve this in PHP?
2
votes
3answers
143 views

Computing lg(N!): Anyone have a Better Recursive Method?

I think the title of the post addresses my question. But just to reiterate, I am wondering if anyone has a better approach to this problem. /* Write a recursive program to compute lg( N! ) */ ...
2
votes
4answers
551 views

Logarithm in Verilog

I've a statement in verilog looking like integer level = log(N) (Where N is a parameter and level is to be determined) But I understand I cannot do complex math statements in verilog, so I'm wondering ...
2
votes
2answers
661 views

How do I calculate a logarithm in iOS?

I want to calculate a logarithm in iOS. Can Objective-C do this?
2
votes
1answer
135 views

Passing double types to ceil results in different values for different optimization levels in GCC

Below, the result1 and result2 variable values are reporting different values depending upon whether or not you compile the code with -g or with -O on GCC 4.2.1 and on GCC 3.2.0 (and I have not tried ...
2
votes
0answers
172 views

How to draw tick marks on a log graph?

Given a range '1 to x', with a tick mark spacing 'y' such that 'y' < 'x/2', how do I draw the tick marks on a graph in log 10? Is there a generalized algorithm for this sort of thing? I should have ...
2
votes
3answers
443 views

Implementing Operator Overloading with Logarithms in C++

I'm having some issues with implementing a logarithm class with operator overloading in C++. My first goal is how I would implement the changeBase method, I've been having a tough time wrapping my ...
1
vote
3answers
68 views

Python math module

Whenever I try to use any of the built-in functions of Python's exponentiation and logarithms module, I get an error like this: NameError: name 'sqrt' is not defined I have tried using ...
1
vote
1answer
32 views

How can you perform varying base logarithmic functions in Javascript?

This problem is being asked with a node.js server in mind, but I stated the question as "javascript" because I will likely use this same logic for a client-side script, as well. Here's the problem: ...
1
vote
2answers
117 views

Logarithm of the very-very large number

I have to find log of very large number. I do this in C++ I have already made a function of multiplication, addition, subtraction, division, but there were problems with the logarithm. I do not need ...
1
vote
1answer
140 views

Labelling logarithmic scale display in R

While plotting histogarm, scatterplots and other plots with axes scaled to logarithmic scale in R, how is it possible to use labels such as 10^-1 10^0 10^1 10^2 10^3 and so on instead of the axes ...

1 2