matrix-inversion
Matrix inversion techniques.
Header
#include <mathtoolbox/matrix-inversion.hpp>
Block Matrix Inversion
About
Inverse of a block (partitioned) matrix
X=[ABCD],
where A and D are square matrices, can be calculated as
[ABCD]−1=[A−1(I+B(D−CA−1B)−1CA−1)−A−1B(D−CA−1B)−1−(D−CA−1B)−1CA−1(D−CA−1B)−1]
This technique is useful particularly when A is relatively large (compared to D) and A−1 is known.
API
This module provides the following function:
Eigen::MatrixXd GetInverseUsingUpperLeftBlockInverse(const Eigen::MatrixXd& matrix,
const Eigen::MatrixXd& upper_left_block_inverse);
where upper_left_block_inverse
corresponds to A−1.
Performance (Casual Comparison)
When X was a random matrix, and the size of X was 3,000 and that of A was 2,999, a naive approach (i.e., the LU decomposition from Eigen) took 5847 milliseconds to obtain X−1 while the block inversion approach took only 121 milliseconds.
Useful Resources
- Block matrix - Wikipedia. https://en.wikipedia.org/wiki/Block_matrix.