Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

파이썬 – scipy.linalg.tanm()

<시간/>

tanm() scipy.linalg의 기능 패키지는 입력 행렬의 탄젠트를 계산하는 데 사용됩니다. 이 루틴은 expm을 사용합니다. 행렬 지수를 계산합니다.

구문

scipy.linalg.tanm(x)

여기서 x는 입력 배열 또는 정방 행렬입니다. x의 행렬 탄젠트를 반환합니다.

예시 1

다음 예를 살펴보겠습니다. -

# Import the required libraries
from scipy import linalg
import numpy as np

# Define the input array
x = np.array([[69 , 12] , [94 , 28]])
print("Input array: \n", x)

# Calculate the Tangent
a = linalg.tanm(x)

# Display the Tangent of matrix
print("Tangent of X: \n", a)

출력

다음 출력을 생성합니다 -

Input array:
 [[69 12]
 [94 28]]
Tangent of X:
 [[-0.15617321 0.02473695]
 [ 0.19377281 -0.24069113]]

예시 2

다음 예를 살펴보겠습니다. -

# Import the required libraries
from scipy import linalg
import numpy as np

# Define the input array
y = np.cbrt([[87 , 26] , [59 , 36]])
print("Input array:\n", y)

# Calculate the Tangent
b = linalg.tanm(y)

# Display the Tangent of matrix
print("Tangent of Y: \n", b)

출력

다음 출력을 생성합니다 -

Input array:
 [[4.43104762 2.96249607]
 [3.89299642 3.30192725]]
Tangent of Y:
 [[1.1489018 0.51580364]
 [0.67781414 0.95230934]]