matrix-inversion

Matrix inversion techniques.

#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=[A1(I+B(DCA1B)1CA1)A1B(DCA1B)1(DCA1B)1CA1(DCA1B)1]

This technique is useful particularly when A is relatively large (compared to D) and A1 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 A1.

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 X1 while the block inversion approach took only 121 milliseconds.

Useful Resources