- Hands-On C++ Game Animation Programming
- Gabor Szauer
- 153字
- 2021-06-30 14:45:58
Minor
Every element in a matrix has a minor. The minor of an element is the determinant of a smaller matrix that eliminates the row and column of the element. For example, consider a 3 x 3 matrix—what is the minor of element 2, 1?
First, eliminate row 2 and column 1 from the matrix. This will result in a smaller 2 x 2 matrix. The determinant of this 2 x 2 matrix is the minor of element 2, 1. The following diagram demonstrates this:

Figure 3.6: The minor of element 2, 1 in a 3 x 3 matrix
This formula works for higher-dimension matrices as well. For example, the minor of an element in a 4 x 4 matrix is the determinant of some smaller, 3 x 3 matrix. A matrix of minors is a matrix where every element is the minor of the corresponding element from the input matrix.
- Web程序設計及應用
- Deploying Node.js
- R語言經典實例(原書第2版)
- Effective C#:改善C#代碼的50個有效方法(原書第3版)
- Getting Started with SQL Server 2012 Cube Development
- Microsoft System Center Orchestrator 2012 R2 Essentials
- Gradle for Android
- Java系統化項目開發教程
- 圖數據庫實戰
- Mastering Gephi Network Visualization
- Android移動應用開發項目教程
- Android 游戲開發大全(第二版)
- Web開發的平民英雄:PHP+MySQL
- Java Web開發教程:基于Struts2+Hibernate+Spring
- Isomorphic Go