File: creal.3

package info (click to toggle)
manpages-fr 1.58.1-3
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 10,104 kB
  • ctags: 4
  • sloc: makefile: 106; sh: 8
file content (34 lines) | stat: -rw-r--r-- 856 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
.\" Copyright 2002 Walter Harms (walter.harms@informatik.uni-oldenburg.de)
.\" Distributed under GPL
.\" Traduction Christophe Blaess <ccb@club-internet.fr>
.\" 21/07/2003 - LDP-1.57
.\"
.TH CREAL 3 "21 juillet 2003" LDP "Manuel du programmeur Linux"
.SH NOM
creal, crealf, creall \- Parties relles de nombres complexes.
.SH SYNOPSIS
.B #include <complex.h>
.sp
.BI "double creal(double complex " z );
.sp
.BI "float crealf(float double complex " z );
.sp
.BI "long double creall(long double complex " z );
.sp
.SH DESCRIPTION
La fonction
.BR creal ()
renvoie la partie relle du nombre complexe
.IR z .
.LP
On a z\ =\ creal(z)\ +\ I*cimag(z).
.SH NOTE
Le compilateur gcc supporte aussi la macro __real__. C'est une extension GNU. 
.SH "CONFORMIT"
C99
.SH "VOIR AUSSI"
.BR cabs (3),
.BR cimag (3),
.BR complex (5)
.SH TRADUCTION
Christophe Blaess, 2003.