acosh

(PHP 4 >= 4.1.0, PHP 5, PHP 7, PHP 8)

acoshCosseno Hiperbólico Inverso

Descrição

acosh(float $arg): float

Retorna o cosseno hiperbólico de arg, isto é, o valor cujo coseno hiperbólico é arg.

Nota: Esta função não foi implementada em plataformas Windows.

Parâmetros

arg

O valor para processar

Valor Retornado

O cosseno hiperbólico inverso do arg

Veja Também

  • cosh() - Cosseno hiperbólico
  • acos() - Cosseno Inverso (arco cosseno)
  • asinh ()
  • atanh() - Tangente hiperbólica inversa

add a note

User Contributed Notes 1 note

up
-2
rahmatjon at gmail dot com
2 years ago
Hello!
There is no any example for acosh() function. Please put this one below the acosh() function's description.
Thank you!

Example:
<?php
$x
= 1;
$y1 = acosh($x);
echo
"PHP function acosh(). acosh(" . $x . ") = " . $y1 . ".<br/>";
$y2 = log($x + sqrt($x*$x -1));
echo
"By definition of acosh. acosh(" . $x . ") = " . $y2 . ".<br/>";

$x = 10;
$y1 = acosh($x);
echo
"PHP function acosh(). acosh(" . $x . ") = " . $y1 . ".<br/>";
$y2 = log($x + sqrt($x*$x -1));
echo
"By definition of acosh. acosh(" . $x . ") = " . $y2 . ".<br/>";
?>
To Top