I have this bit of VB6 sliced out of a project I'm working on:

Public Function C_Ln(c As ComplexNumber) As ComplexNumber
    Set C_Ln = toComplex(Log(C_Abs(c)), Atan2(c.Imag, c.Real))
End Function

The VB6 Log() function is base-e. I'd like to cook up versions of this to do base-2, base-10 and base-n. Where do I start?

link|improve this question

feedback

2 Answers

up vote 8 down vote accepted

You can use the following mathematical identity:

alt text

In VB it would be something like:

Log10 = Log(X) / Log(10)
Log2 = Log(X) / Log(2)
' ... LogN = Log(X) / Log(N)
link|improve this answer
and that still works okay for complex numbers? Sorry if I appear naive, it's because I am (w.r.t. complex numbers) – boost Jun 26 '09 at 9:11
2  
That works fine with complex numbers, however complex logs are infinitely valued. Your formula would calculate only the principal branch, but that's probably good enough. In practice, no one likes an infinitely valued function. – Rhythmic Fistman Jun 26 '09 at 9:21
2  
@boost, yes, see: en.wikipedia.org/wiki/… (but note that a complex number has more than one logarithm). – molf Jun 26 '09 at 9:26
feedback

If you divide the natural log of x by the log of the base you want to achieve you get the desired result, i.e. (ln x)/(ln n) = y

See here for an explanation

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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