modified: diffout.py
[GalaxyCodeBases.git] / c_cpp / etc / calc / help / acosh
blob422d3d36b4473a10baf27f5657fb1093616aafdc
1 NAME
2     acosh - inverse hyperbolic cosine
4 SYNOPSIS
5     acosh(x [,eps])
7 TYPES
8     x           real, x >= 1
9     eps         nonzero real, defaults to epsilon()
11     return      nonnegative real
13 DESCRIPTION
14     Returns the acosh of x to a multiple of eps with error less in
15     absolute value than .75 * eps.
17     acosh(x) is the nonnegative real number v for which cosh(v) = x.
18     It is given by
20                  acosh(x) = ln(x + sqrt(x^2 - 1))
22 EXAMPLE
23     ; print acosh(2, 1e-5), acosh(2, 1e-10), acosh(2, 1e-15), acosh(2, 1e-20)
24     1.31696 1.3169578969 1.316957896924817 1.31695789692481670862
26 LIMITS
27     none
29 LINK LIBRARY
30     NUMBER *qacosh(NUMBER *x, NUMBER *eps)
32 SEE ALSO
33     asinh, atanh, asech, acsch, acoth, epsilon
35 ## Copyright (C) 1999  Landon Curt Noll
37 ## Calc is open software; you can redistribute it and/or modify it under
38 ## the terms of the version 2.1 of the GNU Lesser General Public License
39 ## as published by the Free Software Foundation.
41 ## Calc is distributed in the hope that it will be useful, but WITHOUT
42 ## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
43 ## or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General
44 ## Public License for more details.
46 ## A copy of version 2.1 of the GNU Lesser General Public License is
47 ## distributed with calc under the filename COPYING-LGPL.  You should have
48 ## received a copy with calc; if not, write to Free Software Foundation, Inc.
49 ## 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
51 ## @(#) $Revision: 30.1 $
52 ## @(#) $Id: acosh,v 30.1 2007/03/16 11:10:42 chongo Exp $
53 ## @(#) $Source: /usr/local/src/cmd/calc/help/RCS/acosh,v $
55 ## Under source code control:   1994/03/19 01:40:24
56 ## File existed as early as:    1994
58 ## chongo <was here> /\oo/\     http://www.isthe.com/chongo/
59 ## Share and enjoy!  :-)        http://www.isthe.com/chongo/tech/comp/calc/