double java.lang.Math.log(double a)

송병훈·2022년 3월 21일
0

method

목록 보기
10/13

double java.lang.Math.log(double a)


이중 값의 자연 로그(기본값 e)를 반환합니다. 특수한 경우:
•인수가 NaN이거나 0보다 작으면 결과는 NaN이다.
•인수가 양의 무한이라면 결과는 양의 무한이다.
•인수가 양수 0 또는 음수 0이면 결과는 음수 무한대입니다.

계산된 결과는 정확한 결과의 1ulp 이내여야 합니다. 결과는 반단조여야 합니다.

파라미터:

반품:
값 ln a, a의 자연 로그.


Returns the natural logarithm (base e) of a double value. Special cases:
•If the argument is NaN or less than zero, then the result is NaN.
•If the argument is positive infinity, then the result is positive infinity.
•If the argument is positive zero or negative zero, then the result is negative infinity.

The computed result must be within 1 ulp of the exact result. Results must be semi-monotonic.

Parameters:
a a value

Returns:
the value ln a, the natural logarithm of a.

profile
성실하고 꼼꼼하게

0개의 댓글