在數學的矩陣理論中,一個分塊矩陣或是分段矩陣就是將矩陣分割出較小的矩形矩陣,這些較小的矩陣就稱為區塊。換個方式來說,就是以較小的矩陣組合成一個矩陣。分塊矩陣的分割原則是以水平線和垂直線進行劃分。分塊矩陣中,位在同一行(列)的每一個子矩陣,都擁有相同的列數(行數)。 事实速览 線性代數, 向量 ... 線性代數 A = [ 1 2 3 4 ] {\displaystyle \mathbf {A} ={\begin{bmatrix}1&2\\3&4\end{bmatrix}}} 向量 · 向量空間 · 基底 · 行列式 · 矩陣 向量 標量 · 向量 · 向量空間 · 向量投影 · 外積(叉積 · 七維叉積) · 內積(點積) · 二重向量 矩陣與行列式 矩陣 · 行列式 · 線性方程組 · 秩 · 核 · 跡 · 單位矩陣 · 初等矩陣 · 方塊矩陣 · 分塊矩陣 · 三角矩陣 · 非奇異方陣 · 轉置矩陣 · 逆矩陣 · 對角矩陣 · 可對角化矩陣 · 對稱矩陣 · 反對稱矩陣 · 正交矩陣 · 幺正矩陣 · 埃爾米特矩陣 · 反埃爾米特矩陣 · 正規矩陣 · 伴隨矩陣 · 余因子矩陣 · 共軛轉置 · 正定矩陣 · 冪零矩陣 · 矩陣分解 (LU分解 · 奇異值分解 · QR分解 · 極分解 · 特徵分解) · 子式和餘子式 · 拉普拉斯展開 · 克羅內克積 線性空間與線性變換 線性空間 · 線性變換 · 線性子空間 · 線性生成空間 · 基 · 線性映射 · 線性投影 · 線性無關 · 線性組合 · 線性泛函 · 行空間與列空間 · 對偶空間 · 正交 · 特徵向量 · 最小二乘法 · 格拉姆-施密特正交化 閱論編 关闭 通過將大的矩陣通過分塊的方式劃分,並將每個分塊看做另一個矩陣的元素,這樣之後再參與運算,通常可以讓計算變得清晰甚至得以大幅簡化。例如,有的大矩陣可以通過分塊變為對角矩陣或者是三角矩陣等特殊形式的矩陣。 範例 如下矩陣 P = [ 1 1 2 2 1 1 2 2 3 3 4 4 3 3 4 4 ] {\displaystyle P={\begin{bmatrix}1&1&2&2\\1&1&2&2\\3&3&4&4\\3&3&4&4\end{bmatrix}}} 可以分成四個 2×2 區塊 P 11 = [ 1 1 1 1 ] , P 12 = [ 2 2 2 2 ] , P 21 = [ 3 3 3 3 ] , P 22 = [ 4 4 4 4 ] {\displaystyle P_{11}={\begin{bmatrix}1&1\\1&1\end{bmatrix}},P_{12}={\begin{bmatrix}2&2\\2&2\end{bmatrix}},P_{21}={\begin{bmatrix}3&3\\3&3\end{bmatrix}},P_{22}={\begin{bmatrix}4&4\\4&4\end{bmatrix}}} 分塊後的矩陣可以寫作 P = [ P 11 P 12 P 21 P 22 ] {\displaystyle P={\begin{bmatrix}P_{11}&P_{12}\\P_{21}&P_{22}\\\end{bmatrix}}} 分塊矩陣乘法 一個分塊的矩陣乘法可以僅用包含算符的子矩陣來表述。 給定一個 ( m × p ) {\displaystyle (m\times p)} 矩陣 A {\displaystyle \mathbf {A} } 有 q {\displaystyle q} 行 s {\displaystyle s} 列 A = [ A 11 A 12 ⋯ A 1 s A 21 A 22 ⋯ A 2 s ⋮ ⋮ ⋱ ⋮ A q 1 A q 2 ⋯ A q s ] {\displaystyle \mathbf {A} ={\begin{bmatrix}\mathbf {A} _{11}&\mathbf {A} _{12}&\cdots &\mathbf {A} _{1s}\\\mathbf {A} _{21}&\mathbf {A} _{22}&\cdots &\mathbf {A} _{2s}\\\vdots &\vdots &\ddots &\vdots \\\mathbf {A} _{q1}&\mathbf {A} _{q2}&\cdots &\mathbf {A} _{qs}\end{bmatrix}}} 另外 一個 ( p × n ) {\displaystyle (p\times n)} 矩陣 B {\displaystyle \mathbf {B} } 有 s {\displaystyle s} 行且 r {\displaystyle r} 列 B = [ B 11 B 12 ⋯ B 1 r B 21 B 22 ⋯ B 2 r ⋮ ⋮ ⋱ ⋮ B s 1 B s 2 ⋯ B s r ] , {\displaystyle \mathbf {B} ={\begin{bmatrix}\mathbf {B} _{11}&\mathbf {B} _{12}&\cdots &\mathbf {B} _{1r}\\\mathbf {B} _{21}&\mathbf {B} _{22}&\cdots &\mathbf {B} _{2r}\\\vdots &\vdots &\ddots &\vdots \\\mathbf {B} _{s1}&\mathbf {B} _{s2}&\cdots &\mathbf {B} _{sr}\end{bmatrix}},} 矩陣乘積 C = A B {\displaystyle \mathbf {C} =\mathbf {A} \mathbf {B} } 可被分成塊來計算,矩陣 C {\displaystyle \mathbf {C} } 是 ( m × n ) {\displaystyle (m\times n)} 的矩陣有 q {\displaystyle q} 行 r {\displaystyle r} 列,你的矩陣 C {\displaystyle \mathbf {C} } 中的分割矩陣可以在乘法中被相乘: C α β = ∑ γ = 1 s A α γ B γ β {\displaystyle \mathbf {C} _{\alpha \beta }=\sum _{\gamma =1}^{s}\mathbf {A} _{\alpha \gamma }\mathbf {B} _{\gamma \beta }} Wikiwand - on Seamless Wikipedia browsing. On steroids.