NAME
catanh, catanhf, catanhl - complex arc tangents hyperbolic
SYNOPSIS
#include <complex.h> double complex catanh(double complex z); float complex catanhf(float complex z); long double complex catanhl(long double complex z); Link with -lm.
DESCRIPTION
These functions calculate the complex arc hyperbolic tangent of z. If y = catanh(z), then z = ctanh(y). The imaginary part of y is chosen in the interval [-pi/2,pi/2]. One has: catanh(z) = 0.5 * (clog(1 + z) - clog(1 - z))
VERSIONS
These functions first appeared in glibc in version 2.1.
ATTRIBUTES
For an explanation of the terms used in this section, see attributes(7). Interface Attribute Value catanh(), catanhf(), catanhl() Thread safety MT-Safe
CONFORMING TO
C99, POSIX.1-2001, POSIX.1-2008.
EXAMPLE
/* Link with "-lm" */ #include <complex.h> #include <stdlib.h> #include <unistd.h> #include <stdio.h> int main(int argc, char *argv[]) { double complex z, c, f; if (argc != 3) { fprintf(stderr, "Usage: %s <real> <imag>\n", argv[0]); exit(EXIT_FAILURE); } z = atof(argv[1]) + atof(argv[2]) * I; c = catanh(z); printf("catanh() = %6.3f %6.3f*i\n", creal(c), cimag(c)); f = 0.5 * (clog(1 + z) - clog(1 - z)); printf("formula = %6.3f %6.3f*i\n", creal(f2), cimag(f2)); exit(EXIT_SUCCESS); }
SEE ALSO
atanh(3), cabs(3), cimag(3), ctanh(3), complex(7)
COLOPHON
This page is part of release 4.09 of the Linux man-pages project. A description of the project, information about reporting bugs, and the latest version of this page, can be found at https://www.kernel.org/doc/man-pages/. 2015-04-19 CATANH(3)
More Linux Commands
manpages/stat.2.html
stat(2) - get file status (System calls - Linux man page)...
These functions return information about a file, in the buffer pointed to by stat. No permissions are required on the file itself, but-in the case of stat(), fs
manpages/sync.8.html
sync(8) - synchronize data on disk with memory (Man Page)...
sync writes any data buffered in memory out to disk. This can include (but is not limited to) modified superblocks, modified inodes, and delayed reads and write
manpages/SDL_PushEvent.3.html
SDL_PushEvent(3) - Pushes an event onto the event queue.....
The event queue can actually be used as a two way communication channel. Not only can events be read from the queue, but the user can also push their own events
manpages/XkbAllocServerMap.3.html
XkbAllocServerMap(3) - Allocate and initialize an empty serv
XkbAllocServerMap allocates and initializes an empty server map in the server field of the keyboard description specified by xkb. The which parameter specifies
manpages/ttk_vsapi.n.html
ttk_vsapi(n) - Define a Microsoft Visual Styles element.....
The vsapi element factory creates a new element in the current theme whose visual appearance is drawn using the Microsoft Visual Styles API which is responsible
manpages/gdbus-codegen.1.html
gdbus-codegen(1) - D-Bus code and documentation generator...
gdbus-codegen is used to generate code and/or documentation for one or more D-Bus interfaces. The tool reads D-Bus Introspection XML [1] files and generates out
manpages/XScreenSaverUnsetAttributes.3.html
XScreenSaverUnsetAttributes(3) - X11 Screen Saver extension
The X Window System provides support for changing the image on a display screen after a user-settable period of inactivity to avoid burning the cathode ray tube
manpages/XCompositeNameWindowPixmap.3.html
XCompositeNameWindowPixmap(3) - X Composite Extension librar
The composite extension provides several related mechanisms: Per-hierarchy storage The rendering of an entire hierarchy of windows is redirected to off-screen s
manpages/winepath.1.html
winepath(1) - Tool to convert Unix paths to/from Win32 paths
winepath is a tool to convert a Unix path to/from a Win32 (short/long) path compatible with its Microsoft Windows counterpart. If more than one option is given
manpages/Tcl_GetInterpPath.3.html
Tcl_GetInterpPath(3) - manage multiple Tcl interpreters, ali
These procedures are intended for access to the multiple interpreter facility from inside C programs. They enable managing multiple interpreters in a hierarchic
manpages/git-verify-pack.1.html
git-verify-pack(1) - Validate packed git archive files......
Reads given idx file for packed Git archive created with the git pack-objects command and verifies idx file and the corresponding pack file. OPTIONS <pack>.idx
manpages/bootup.7.html
bootup(7) System bootup process (Misc - Linux man page).....
A number of different components are involved in the system boot. Immediately after power-up, the system BIOS will do minimal hardware initialization, and hand
