acosh

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

acosh역쌍곡코사인

설명

float acosh ( float $arg )

arg의 역쌍곡코사인 값을 반환합니다. 즉, 반환값의 쌍곡코사인은 arg가 됩니다.

인수

arg

계산할 인수

반환값

arg의 역쌍곡코사인

변경점

버전 설명
5.3.0 모든 플랫폼에서 이 함수를 사용할 수 있게 되었습니다.

참고

add a note add a note

User Contributed Notes 1 note

up
0
rahmatjon at gmail dot com
3 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