diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2010-10-18 22:40:24 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2010-10-18 22:40:24 +0000 |
commit | bf5300eaee04b5e143dea58e922bc6ae260197dd (patch) | |
tree | 2d9aa73897ac0abb39e90a468babdf937e2ba513 /newlib/libm/complex/complex.tex | |
parent | cf9e79ca7a5adbc3d6d868ce2334ddd518cda418 (diff) | |
download | cygnal-bf5300eaee04b5e143dea58e922bc6ae260197dd.tar.gz cygnal-bf5300eaee04b5e143dea58e922bc6ae260197dd.tar.bz2 cygnal-bf5300eaee04b5e143dea58e922bc6ae260197dd.zip |
2010-10-18 Marco Atzeri <marco_atzeri@yahoo.it>
* libm/Makefile.am: added complex functions documentation
* libm/libm.texinfo: ditto
* libm/complex/Makefile.am: Ditto
* libm/complex/complex.tex: Ditto
* libm/complex/(cabs.c, cacos.c, cacosh.c, carg.c,
casin.c, casinh.c, catan.c, catanh.c, ccos.c, ccosh.c,
cexp.c, cimag.c, clog.c, conj.c, cpow.c, cproj.c, creal.c,
csin.c, csinh.c, csqrt.c, ctan.c, ctanh.c): Ditto
* libm/Makefile.in: Regenerate
* libm/complex/Makefile.in: Ditto
Diffstat (limited to 'newlib/libm/complex/complex.tex')
-rw-r--r-- | newlib/libm/complex/complex.tex | 56 |
1 files changed, 55 insertions, 1 deletions
diff --git a/newlib/libm/complex/complex.tex b/newlib/libm/complex/complex.tex index 3f1063c3d..4ac14c3a9 100644 --- a/newlib/libm/complex/complex.tex +++ b/newlib/libm/complex/complex.tex @@ -1 +1,55 @@ -@c empty stub +@node Complex +@chapter Mathematical Complex Functions (@file{complex.h}) + +This chapter groups the complex mathematical functions. The +corresponding definitions and declarations are in @file{complex.h}. +Functions and documentations are taken from NetBSD. + +@menu +* cabs:: Complex absolute value +* cacos:: Complex arc cosine +* cacosh:: Complex arc hyperbolic cosine +* carg:: Argument (also called phase angle) +* casin:: Complex arc sine +* casinh:: Complex arc hyperbolic sine +* catan:: Complex arc tangent +* catanh:: Complex arc hyperbolic tangent +* ccos:: Complex cosine +* ccosh:: Complex hyperbolic cosine +* cexp:: Complex exponent +* cimag:: Imaginary part +* clog:: Complex natural (base e) logarithm +* conj:: Complex conjugate +* cpow:: Complex power function +* cproj:: Compute a projection on the Riemann sphere +* creal:: Real part +* csin:: Complex sine +* csinh:: Complex hyperbolic sine +* csqrt:: Complex square root +* ctan:: Complex tangent +* ctanh:: Complex hyperbolic tangent +@end menu + + +@page @include complex/cabs.def +@page @include complex/cacos.def +@page @include complex/cacosh.def +@page @include complex/carg.def +@page @include complex/casin.def +@page @include complex/casinh.def +@page @include complex/catan.def +@page @include complex/catanh.def +@page @include complex/ccos.def +@page @include complex/ccosh.def +@page @include complex/cexp.def +@page @include complex/cimag.def +@page @include complex/clog.def +@page @include complex/conj.def +@page @include complex/cpow.def +@page @include complex/cproj.def +@page @include complex/creal.def +@page @include complex/csin.def +@page @include complex/csinh.def +@page @include complex/csqrt.def +@page @include complex/ctan.def +@page @include complex/ctanh.def |