man-pages/man7/complex.7

58 lines
1.6 KiB
Groff
Raw Normal View History

2006-04-21 01:20:56 +00:00
.\" Copyright 2002 Walter Harms (walter.harms@informatik.uni-oldenburg.de)
.\" Distributed under GPL
.\"
.TH COMPLEX 7 2009-07-25 "" "Linux Programmer's Manual"
2006-04-21 01:20:56 +00:00
.SH NAME
complex \- basics of complex mathematics
.SH SYNOPSIS
.B #include <complex.h>
.SH DESCRIPTION
Complex numbers are numbers of the form z = a+b*i, where a and b are
real numbers and i = sqrt(\-1), so that i*i = \-1.
.br
There are other ways to represent that number.
The pair (a,b) of real
2006-04-21 01:20:56 +00:00
numbers may be viewed as a point in the plane, given by X- and
Y-coordinates.
This same point may also be described by giving
2006-04-21 01:20:56 +00:00
the pair of real numbers (r,phi), where r is the distance to the origin O,
and phi the angle between the X-axis and the line Oz.
Now
2006-04-21 01:20:56 +00:00
z = r*exp(i*phi) = r*(cos(phi)+i*sin(phi)).
.PP
The basic operations are defined on z = a+b*i and w = c+d*i as:
.TP
.B addition: z+w = (a+c) + (b+d)*i
.TP
.B multiplication: z*w = (a*c \- b*d) + (a*d + b*c)*i
.TP
.B division: z/w = ((a*c + b*d)/(c*c + d*d)) + ((b*c \- a*d)/(c*c + d*d))*i
.PP
Nearly all math function have a complex counterpart but there are
2007-12-24 11:33:41 +00:00
some complex-only functions.
2006-04-21 01:20:56 +00:00
.SH EXAMPLE
Your C-compiler can work with complex numbers if it supports the C99 standard.
2007-07-21 05:25:03 +00:00
Link with \fI\-lm\fP.
The imaginary unit is represented by I.
2006-04-21 01:20:56 +00:00
.sp
.nf
2007-04-05 12:36:57 +00:00
/* check that exp(i * pi) == \-1 */
2007-04-05 13:29:41 +00:00
#include <math.h> /* for atan */
#include <stdio.h>
2006-04-21 01:20:56 +00:00
#include <complex.h>
2007-04-05 12:36:57 +00:00
int
main(void)
2007-04-05 12:36:57 +00:00
{
double pi = 4 * atan(1.0);
double complex z = cexp(I * pi);
2007-04-05 12:36:57 +00:00
printf("%f + %f * i\\n", creal(z), cimag(z));
2006-04-21 01:20:56 +00:00
}
.fi
.SH "SEE ALSO"
.BR cabs (3),
.BR carg (3),
.BR cexp (3),
.BR cimag (3),
.BR creal (3)