Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

หลาม – scipy.linalg.cosm


จักรวาล() ฟังก์ชันของ scipy.linalg แพ็คเกจใช้เพื่อคำนวณโคไซน์ของเมทริกซ์อินพุต กิจวัตรนี้ใช้ 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]]