单位矩阵的逆| 使用Python的线性代数
生活随笔
收集整理的這篇文章主要介紹了
单位矩阵的逆| 使用Python的线性代数
小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
Prerequisites:
先決條件:
Defining a Matrix
定義矩陣
Identity Matrix
身份矩陣
There are matrices whose inverse is the same as the matrices and one of those matrices is the identity matrix.
有些矩陣的逆與矩陣相同,并且這些矩陣之一是單位矩陣。
I-.1 = ISyntax:
句法:
inv_M = numpy.linalg.inv(I)Here, "M" is the an identity matrix.
在此,“ M”是單位矩陣。
Python代碼查找單位矩陣的逆矩陣 (Python code to find the inverse of an identity matrix)
# Linear Algebra Learning Sequence # Inverse of a Identity Matriximport numpy as npI = np.eye(6) print("---Matrix I---\n", I)ai = np.linalg.inv(I) print('\n\nInverse of A as ----\n', ai)print('\n\nThe Matrices are same')Output:
輸出:
---Matrix I---[[1. 0. 0. 0. 0. 0.][0. 1. 0. 0. 0. 0.][0. 0. 1. 0. 0. 0.][0. 0. 0. 1. 0. 0.][0. 0. 0. 0. 1. 0.][0. 0. 0. 0. 0. 1.]]Inverse of A as ----[[1. 0. 0. 0. 0. 0.][0. 1. 0. 0. 0. 0.][0. 0. 1. 0. 0. 0.][0. 0. 0. 1. 0. 0.][0. 0. 0. 0. 1. 0.][0. 0. 0. 0. 0. 1.]]The Matrices are same翻譯自: https://www.includehelp.com/python/inverse-of-an-identity-matrix.aspx
總結(jié)
以上是生活随笔為你收集整理的单位矩阵的逆| 使用Python的线性代数的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: java awt 按钮响应_Java A
- 下一篇: 量词逻辑量词里面的v表示?_代理知识表示