Python – scipy.linalg.cosm
scipy.linalg 包的 cosm() 函数用于计算输入矩阵的余弦。此例程使用 expm 来计算矩阵的指数。
语法
scipy.linalg.cosm(x)
其中 x 是输入数组。
示例 1
考虑以下示例 -
# Import the required libraries from scipy import linalg import numpy as np # Define the input array q = np.array([[121 , 10] , [77 , 36]]) print("Array Input :\n", q) # Calculate the Cosine r = linalg.cosm(q) # Display the Cosine of matrix print("Cosine of Q: \n", r)
输出
以上程序将生成以下输出 -
Array Input : [[121 10] [ 77 36]] Cosine of Q: [[-0.89675008 -0.00369979] [-0.02848841 -0.86530184]]
示例 2
再举个例子 -
# Import the required libraries from scipy import linalg import numpy as np # Define the input array x = np.ones((3, 3)) print("Array Input :\n", x) # Calculate the Cosine a = linalg.cosm(x) # Display the Cosine of matrix print("Cosine of X: \n", a)
输出
以上程序将生成以下输出 -
Array Input : [[1. 1. 1.] [1. 1. 1.] [1. 1. 1.]] Cosine of X: [[ 0.33666917 -0.66333083 -0.66333083] [-0.66333083 0.33666917 -0.66333083] [-0.66333083 -0.66333083 0.33666917]]
广告