The logarithm of a number is the exponent by which another fixed value, the base, has to be raised to produce that number.
1
vote
1answer
17 views
time complexity of the following algorithm
Suppose a Node (in a BST) is defined as follows (ignore all the setters/getters/inits).
class Node
{
Node parent;
Node leftChild;
Node rightChild;
int value;
// ... other ...
0
votes
0answers
33 views
Log-Cumulative Hazard Plot in R
Pretty much I have fitted a Weibull Distribution so that it contains all the significant variables i the model.
My code is;
fit <- weibreg(Surv(t, cen) ~ treat + hosp + age + anti + cort, ...
0
votes
0answers
8 views
How to transform p-values of the form -log(p-value) into normal p-values?
as my title says I am wondering how to best transform p-values that are given in the form -log(p-value) back into normal p-values? Output values of this form look, for instance, like: 2.53E00 or ...
-3
votes
1answer
28 views
Logarithmic space [closed]
Does anyone have a method to generate a logarithmically spaced number array. The method signature would be:
public static List<double> logSpace (double start, double end, double numValues)
...
2
votes
2answers
95 views
What would cause an algorithm to have O(log log n) complexity?
This earlier question addresses some of the factors that might cause an algorithm to have O(log n) complexity.
What would cause an algorithm to have time complexity O(log log n)?
-3
votes
1answer
94 views
warning: incompatible implicit declaration of built-in function log2 [closed]
So we have this program in C, we need to use the base-2 logarithmic function, to get the base 2 logarithm of n.
Here's the code:
#include <math.h>
int partSize(int n) {
return log2(n);
}
...
3
votes
2answers
45 views
Matplotlib logarithmic scale with zero value
I have a very large and sparse dataset of spam twitter accounts and it requires me to scale the x axis in order to be able to visualize the distribution (histogram, kde etc) and cdf of the various ...
0
votes
1answer
14 views
How to dynamically change axis from linear to logarithmic in HighChart
I want to dynamically change axis from linear to logarithmic in HighChart. Please see this fiddle example.
yAxis: {
//linear
type: 'logarithmic',
...
1
vote
0answers
23 views
How to create a custom log function for SPARQL using openRDF bigdata? [closed]
I am trying to create a custom log function for my openRDF bigdata SPARQL engine. The only source for information that I have been able to find has been on the bigdata wiki page but it has proven ...
2
votes
1answer
45 views
Logarithm Function in SPARQL Query
I am trying to create a SPARQL query that performs the logarithm function on the returned results. I have implemented the Jena SPARQL engine in my java program, but have only been able to find these ...
0
votes
1answer
41 views
Similar to the chart function in MS Excel, given set of numbers generate mathematical equation to describe set
I'm trying to work up a prototype archive format that can better survive data corruption. My schema is to convert every character to decimal and then plot the data.
For example:
S o m ...
5
votes
1answer
43 views
Segment annotation on log10 scale works differently for the end and the beginning of the segment?
I found a rather confusing feature in ggplot while trying to annotate segments on log10 scale. Following code produces the plot below:
library(ggplot2)
dat <- data.frame(x = x <- 1:1000, y = ...
1
vote
2answers
51 views
taking ratios of logs in numpy/scipy in Python
I'm trying to calculate the ratio of two log values a and b and then convert it back to non-log values. Since these are log values, the ratio c is:
from numpy import *
c = a - b
# convert to non-log ...
0
votes
2answers
103 views
Golang: Computing Anti-log of a number
I wanted to know how it is that you compute the anti-log of a number.
3
votes
3answers
154 views
How to draw a circle in a log-log plot in R?
I have a plot with two logarithmic axes. I'd like to add a circle to a certain position of the plot. I tried to use plotrix, but this does not give options for "log-radius".
# data to plot
x = 10^(-1 ...
0
votes
0answers
18 views
Asymptotic complexities of log versus powers
Hey guys I'm working out some big-o problems from the Algorithms book by Dasgupta and am stuck on a few.
1) f(n) = n^0.1 g(n) = (log n)^10
According to the top answer on Asymptotic Complexity of ...
1
vote
1answer
93 views
ValueError: math domain error
from numpy import zeros, array
from math import sin, log
from newtonRaphson2 import *
def f(x):
f = zeros(len(x))
f[0] = sin(x[0]) + x[1]**2 + log(x[2]) - 7.0
f[1] = 3.0*x[0] + 2.0**x[1] ...
1
vote
1answer
56 views
Taking logs and adding versus multiplying
If I want to take the product of a list of floating point numbers, what's the worst-case/average-case precision lost by adding their logs and then taking exp of the sum as opposed to just multiplying ...
0
votes
2answers
50 views
Java: Offset of highest 1 bit in an integer [duplicate]
Let's not consider 0 or negative values for the sake of simplicity.
Known solution #1
return (int)(Math.log(x)/Math.log(2)); // pseudo code
Problem: Numerically unstable. For x=4 input it may ...
-3
votes
1answer
28 views
Data structure - run-time and Asymptotic bounds [closed]
if a>0 is a fixed variable, Prove then: lg(n+a) = Θ(lg n)
please advice.
1
vote
1answer
128 views
Logarithmic Y axis in Highcharts 3.0 bubble chart
I'm trying to change yAxis type of a Highcharts 3.0ß bubble chart to logarithmic, but - when it displays something - it displays a single series, and a single bubble... here's an simple example, based ...
0
votes
1answer
35 views
logarithmic chart with 0 values
I have created a new logarithmic graph using Highcharts.
But from time to time I have 0 values :( where there are no players in my game.
Q: How can i display 0 value on logarithmic chart? (note: log0 ...
2
votes
4answers
215 views
What is the best data structure in Python for storing a set of four (or more) values?
Say I have the following variables and its corresponding values which represents a record.
name = 'abc'
age = 23
weight = 60
height = 174
Please note that the value could be of different types ...
1
vote
4answers
109 views
how to check if a number is a power of base b?
In python, how can you check if a number n is an exact power of base b?
Note: it needs to be generalized to any base which is given as a parameter.
Here is what I got:
Assume n and base are ...
-4
votes
1answer
80 views
How to solve a logarithm in C porgramming without math.h. Input base, and a number to return “log of number in base is result” [closed]
How to solve a logarithm in C programming without math.h. Input base, and a number to return "log of number in base is result"
0
votes
1answer
89 views
D3 log scale displaying wrong numbers
I'm trying to wrap my head around the log scales provided by D3.js. It should be noted that as of yesterday, I had no idea what a logarithmic scale was.
For practice, I made a column chart displaying ...
1
vote
2answers
154 views
dividing by 2 and ceiling until remains 1
having the following algorithm only for natural numbers:
rounds(n)={1, if n=1; 1+rounds(ceil(n/2)), else}
so writing in a programming language this will be
int rounds(int n){
if(n==1)
...
0
votes
1answer
120 views
java.lang.Math.log replaced by intrinsic call, why not java.lang.Math.exp()?
I'm reasking a question that had too little attention I think:
Why does this simple code (simply a call to Math.log()):
Double thisdouble = Math.log(10);
With a breakpoint on line 275 of ...
1
vote
3answers
62 views
Complexity analysis of logarithms
I have two functions, f(n)=log2n and g(n)=log10n. I am trying to decide whether f(n) is O(g(n)), or Ω(g(n)) or Θ(g(n)). I thinks i should take the limit f(n)/g(n) as n goes to infinity, and I think ...
1
vote
3answers
122 views
Exponentiate very large numbers in R
I have the logarithms of very large values, for example:
log_a = 1347
log_b = 1351
And I am trying to solve this expression:
exp(log_a) - (0.1 * exp(log_b))
Or equivalently this (same ...
-1
votes
2answers
98 views
What does taking the logarithm of a variable mean? [closed]
Question with regards to taking the logarithm of a variable (Statistics Question)
Say you have a bar graph displaying data for an example "Cost of Computer Orders by the Population" and you are ...
-2
votes
1answer
133 views
what is the growth rate of 4^log2(n)? [closed]
What is the growth rate of 4^log2(n)? What I did is (2^2)^log2(n) and hence a growth rate of O(2^n) in big o notation but I don't think it's right.
1
vote
2answers
103 views
Calculating the length needed to represent an integer in an arbitrary base
I have the length of a representation of an integer in an arbitrary base. Say the length is 15, and the base is 36. I'd then like to work out how long a representation of said integer would be in ...
2
votes
1answer
270 views
JavaFX 2.x : Logarithmic scale on Y axis
As from this very good post here
Logarithmic scale in Java FX 2
I have changed this class to get log scale on Y axis, and it works fine. The only problem I have is that there are very few horizontal ...
-1
votes
1answer
115 views
My Logarithmic Spiral function does not compute correctly
I wasn't so sure where to ask this question (between math and here)
I try to draw Logarithmic Spiral using this formula
It works (well it show a spiral on screen) , but when i change the pitch (a) ...
11
votes
1answer
303 views
Wrong logarithm of BigInteger when size of BigInteger exceeds ¼ gigabyte
When I have a BigInteger whose size exceeds 2 gigabits (that's ¼ gigabyte; I found this threshold by trial and error), the logarithm method gives a wrong answer. This simple code illustrates:
...
0
votes
1answer
120 views
Fitting logarithmic regression on time series data containing zero in it ? (using R tool )
https://dl.dropbox.com/u/53624395/11.csv
This is time series data and I have to perform logarithmic regression of form y=a+b(log(x1))+c(log(x2)) and find a,b,c and then check is there any such type ...
1
vote
3answers
238 views
Logarithm in functional language with addition and multiplication only
While learning for an exam, I've just found the following task in an exercise:
Write a function that gives the integer logarithm to base 2 (rounded up) while only using multiplication and addition.
...
1
vote
2answers
145 views
MATLAB symbolically solve a system in logarithms — Why does the solver fail to find a solution?
I'm trying to symbolically solve a system of equations in logarithms (so the estimated coefficients are elasticities), but matlab is tells me an "Explicit solution could not be found." Any ideas why?
...
-1
votes
2answers
218 views
How to handle data which contains 0 in a log transformation regression using R tool [closed]
I want to perform log transformation regression in R tool but the problem is that I don't know how to handle situations when data contains 0 since log 0 is infinite...
Please help..
6
votes
3answers
286 views
Transforming variable density on log scale with R
I want to plot the density of variable whose range is the following:
Min. :-1214813.0
1st Qu.: 1.0
Median : 40.0
Mean : 303.2
3rd Qu.: 166.0
Max. : 1623990.0
...
1
vote
5answers
211 views
For 2 numbers, how to test if one is an integer power of the other?
For integers x, y, and n, (only x and y are given) test if xn = y? If x = 8, y = 512, then n = 3 so that is true. But if x = 8 and y = 500, n would have to be around 2.98 (not an integer) so the ...
3
votes
1answer
246 views
Logarithm Algorithm
I need to evaluate a logarithm of any base, it does not matter, to some precision. Is there an algorithm for this? I program in Java, so I'm fine with Java code.
How to find a binary logarithm very ...
1
vote
0answers
51 views
Making a chart in cshtml that uses logarithmic axes
I am trying to create a chart that will take the X and Y values and plot them on a chart which is in logarithmic scale.
so far i have:
@{
var db = Database.Open("myDB");
var data = db.Query("SELECT ...
-3
votes
3answers
807 views
Using log base 10 in a formula in Java
I'm trying to write a Java program that can take values and put them into a formula involving log base 10.
How can I calculate log_10 in Java?
1
vote
1answer
78 views
Logarithmic growth [duplicate]
Possible Duplicate:
Plain English explanation of Big O
The wikipedia article on logarithmic growth is a stub. Many of the answers I read on stackoverflow give clarification of how ...
-1
votes
2answers
114 views
Algorithms and BigOh [closed]
I am trying to understand what O(log(n)) suppose to means.
I have this exercise:
Given a sorted list of distinct integers A[0];A[1];...A[n-1]; you
want to find out whether there is an index i ...
0
votes
1answer
146 views
Logarithmic yscale in imshow [duplicate]
Possible Duplicate:
Plot logarithmic axes with matplotlib in python
I have a 50*1050 matrix in which the dimension 50 represents the frequency and 1050 the time. I tried to plot it using ...
6
votes
3answers
267 views
Branch-free implementation of f(x) := if x == 0 then 0 else (x * log(x))
I have this C function:
double f(int x)
{
if (x <= 0)
return 0.0;
else
return x * log(x);
}
which I am calling in a tight loop, and would like to get rid of the branch to ...
-2
votes
2answers
103 views
Finding number of digits in integer when being passed an int = 0
Using Java btw. But Usually people seem to do this sort of thing with.
int numDigits = (int)(log10(num)+1); //can explicitly floor, or casting to int will do that
but log10(0) = -INF, which means ...


