sinm () फ़ंक्शन scipy.linalg पैकेज का उपयोग इनपुट मैट्रिक्स की साइन की गणना करने के लिए किया जाता है। यह रूटीन expm . का उपयोग करता है मैट्रिक्स घातांकों की गणना करने के लिए।
सिंटैक्स
scipy.linalg.sinm(x)
जहां x इनपुटर ऐरे है।
उदाहरण 1
आइए निम्नलिखित उदाहरण पर विचार करें -
# Import the required libraries from scipy from scipy import linalg import numpy as np # Define the input array X = np.array([[110, 12], [79, 23]]) print("Input Matrix, X:\n", X) # Calculate the Sine of the matrix n = linalg.sinm(X) # Display the Sine print("Sine of X: \n", n)
आउटपुट
यह निम्नलिखित आउटपुट उत्पन्न करेगा -
Input Matrix, X: [[110 12] [ 79 23]] Sine of X: [[ 0.41972171 -0.02196579] [-0.14460811 0.57897368]]
उदाहरण 2
आइए एक और उदाहरण लेते हैं -
# Import the required libraries from scipy import linalg import numpy as np # Define the input array p = np.array([[87 , 15] , [48 , 12]]) q = linalg.inv(p) print("Input Matrix:\n", q) # Calculate the Sine n = linalg.sinm(q) # Display the Sine of matrix print("Sine of Q: \n", n)
आउटपुट
यह निम्नलिखित आउटपुट उत्पन्न करेगा -
Input Matrix: [[ 0.03703704 -0.0462963 ] [-0.14814815 0.26851852]] Sine of Q: [[ 0.03663868 -0.04560274] [-0.14592875 0.26465236]]