Python – scipy.linalg.tanm()
在 scipy.linalg 包的 tanm() 函数中用于计算输入矩阵的正切值。该例程使用 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]]
广告