man-pages/man3/creal.3

39 lines
801 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 CREAL 3 2008-08-11 "" "Linux Programmer's Manual"
2004-11-03 13:51:07 +00:00
.SH NAME
creal, crealf, creall \- get real part of a complex number
.SH SYNOPSIS
.B #include <complex.h>
.sp
.BI "double creal(double complex " z );
.br
2004-11-03 13:51:07 +00:00
.BI "float crealf(float complex " z );
.br
2004-11-03 13:51:07 +00:00
.BI "long double creall(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
2005-10-19 14:48:35 +00:00
.BR creal ()
2007-07-09 20:25:04 +00:00
function returns the real part of the complex number
.IR z .
2004-11-03 13:51:07 +00:00
.LP
2007-12-24 14:41:56 +00:00
One has:
.nf
z = creal(z) + I * cimag(z)
.fi
.SH VERSIONS
These functions first appeared in glibc in version 2.1.
.SH "CONFORMING TO"
C99.
2007-05-16 02:54:18 +00:00
.SH NOTES
The gcc supports also __real__.
That is a GNU extension.
2004-11-03 13:51:07 +00:00
.SH "SEE ALSO"
.BR cabs (3),
.BR cimag (3),
2006-04-21 01:24:06 +00:00
.BR complex (7)