Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to calculate the value of (1e-6)^84, but in R/R64, the result is 0, which would cause some problem when applying log10 function on it.

Is there anyway to solve this problem?

share|improve this question
You can probably use the info in this question: stackoverflow.com/questions/9025412/… – Chase May 26 '12 at 19:53
5  
Can't you just compute 84 * log10(1e-6) = 84 * (-6) = -504? – Blender May 26 '12 at 19:55
1  
It's probably overkill, but you could also look into a package like Rmpfr that allows for arbitrary precision arithmetic. – joran May 26 '12 at 21:07
Is there a reason for the machine-learning tag? As suggested/hinted by others here, giving a little bit more context would help you get better answers ... – Ben Bolker May 27 '12 at 19:45

1 Answer

up vote 2 down vote accepted

Depends what problem you are actually trying to solve. Do you care about the value of log(teeenytinynumber)? If not, replace the zero values with NA and keep going. If you do, figure out if there's a better way than following a giant exponent with a log function. Which is to say, simplify your algorithm before crunching numbers.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.