Tagged Questions

1
vote
2answers
1k views

How to calculate log of a complex number to a base other than 'e'?

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 ...