ImLog10
Description
Calculate the base 10 logarithm of a complex.
where ImLn computes the natural logarithm of the complex, and
.
Syntax
complex ImLog10(complex cX)
Parameters
cX
- The complex number.
Return
Return the base 10 logarithm of the specified complex.
Example
imLog10(3+4i) = ; // 0.69897000433602+0.40271919627337i complex c1 = 1+1i; complex c2; c2 = imLog10(c1); c2 = ; // 0.15051499783199+0.34109408846046i
/math-756673d3d4d6ca8fa044e63acdb19fbc.png)