This commit is contained in:
Michael Kerrisk 2007-12-28 06:48:39 +00:00
parent ad97b91008
commit 494fc522de
5 changed files with 5 additions and 4 deletions

View File

@ -19,6 +19,7 @@ The complex cosine function is defined as:
.nf
ccos(z) = (exp(i * z) + exp(\-i * z)) / 2
.fi
.SH "CONFORMING TO"
C99
.SH "SEE ALSO"

View File

@ -24,7 +24,7 @@ One has:
.nf
z = creal(z) + I * cimag(z)
.nf
.fi
.SH "CONFORMING TO"
C99
.SH NOTES

View File

@ -52,7 +52,7 @@ is defined mathematically as:
.nf
cosh(x) = (exp(x) + exp(\-x)) / 2
.nf
.fi
.SH "CONFORMING TO"
SVr4, POSIX, 4.3BSD, C99.
The

View File

@ -19,7 +19,7 @@ The complex sine function is defined as:
.nf
csin(z) = (exp(i * z) \- exp(\-i * z)) / (2 * i)
.nf
.fi
.SH "CONFORMING TO"
C99
.SH "SEE ALSO"

View File

@ -51,7 +51,7 @@ is defined mathematically as:
.nf
tanh(x) = sinh(x) / cosh(x)
.nf
.fi
.SH "CONFORMING TO"
SVr4, 4.3BSD, C89.
The