man-pages/man3/clog.3

45 lines
961 B
Groff
Raw Normal View History

2004-11-03 13:51:07 +00:00
.\" Copyright 2002 Walter Harms (walter.harms@informatik.uni-oldenburg.de)
.\" Distributed under GPL
.\"
.TH CLOG 3 2008-08-11 "" "Linux Programmer's Manual"
2004-11-03 13:51:07 +00:00
.SH NAME
clog, clogf, clogl \- natural logarithm of a complex number
.SH SYNOPSIS
.B #include <complex.h>
.sp
.BI "double complex clog(double complex " z );
.br
2004-11-03 13:51:07 +00:00
.BI "float complex clogf(float complex " z );
.br
2004-11-03 13:51:07 +00:00
.BI "long double complex clogl(long double complex " z );
.sp
2007-07-21 05:25:03 +00:00
Link with \fI\-lm\fP.
2004-11-03 13:51:07 +00:00
.SH DESCRIPTION
The logarithm
.BR clog ()
is the inverse function of the exponential
.BR cexp (3).
2007-12-24 14:41:56 +00:00
Thus, if \fIy\ =\ clog(z)\fP, then \fIz\ =\ cexp(y)\fP.
The imaginary part of
.I y
2006-09-06 12:43:19 +00:00
is chosen in the interval [\-pi,pi].
2004-11-03 13:51:07 +00:00
.LP
2007-12-24 14:41:56 +00:00
One has:
.nf
clog(z) = log(cabs(z)) + I * carg(z)
.fi
2004-11-03 13:51:07 +00:00
.LP
Note that
.I z
close to zero will cause an overflow.
.SH VERSIONS
These functions first appeared in glibc in version 2.1.
2004-11-03 13:51:07 +00:00
.SH "CONFORMING TO"
C99.
2004-11-03 13:51:07 +00:00
.SH "SEE ALSO"
.BR cabs (3),
.BR cexp (3),
.BR clog10 (3),
2006-04-21 01:24:06 +00:00
.BR complex (7)