정보통신기술(ICT)

쌍곡 함수

해머슴 2024. 10. 8. 11:09
import math

# 쌍곡 사인 함수
def sinh(x):
    return (math.exp(x) - math.exp(-x)) / 2

# 쌍곡 코사인 함수
def cosh(x):
    return (math.exp(x) + math.exp(-x)) / 2

# 쌍곡 탄젠트 함수
def tanh(x):
    return sinh(x) / cosh(x)

# 테스트
x = 2
print(f'sinh({x}) = {sinh(x)}')
print(f'cosh({x}) = {cosh(x)}')
print(f'tanh({x}) = {tanh(x)}')

 

'정보통신기술(ICT)' 카테고리의 다른 글

절대값 함수  (0) 2024.10.11
역삼각 함수  (0) 2024.10.10
델타 함수  (0) 2024.10.07
시그모이드 함수  (0) 2024.10.04
로그 함수  (0) 2024.10.02