SimPEG.utils.inverse_3x3_block_diagonal#
- SimPEG.utils.inverse_3x3_block_diagonal(a11, a12, a13, a21, a22, a23, a31, a32, a33, return_matrix=True, **kwargs)[source]#
Invert a set of 3x3 matricies from vectors containing their elements.
- Parameters
- a11, a12, …, a33(
n_blocks
)numpy.ndarray
Vectors which contain the corresponding element for all 3x3 matricies
- return_matrixbool,
optional
True: Returns the sparse block 3x3 matrix M (default).
False: Returns the vectors containing the elements of each matrix’ inverse.
- a11, a12, …, a33(
- Returns
- (3 *
n_blocks
, 3 *n_blocks
)scipy.sparse.coo_matrix
orlist
of
(n_blocks
) numpy.ndarray. If return_matrix = False, the function will return vectors b11, b12, b13, b21, b22, b23, b31, b32, b33. If return_matrix = True, the function will return the block matrix M.
- (3 *
Notes
The elements of a 3x3 matrix A are given by:
For a set of 3x3 matricies, the elements may be stored in a set of 9 distinct vectors
, , …, . For each matrix, inverse_3x3_block_diagonal ouputs the vectors containing the elements of each matrix’ inverse; i.e. , , …, where:For special applications, we may want to output the elements of the inverses of the matricies as a 3x3 block matrix of the form:
where
are diagonal matrices whose non-zero elements are defined by vector . Where n is the number of matricies, the block matrix is sparse with dimensions (3n, 3n).Examples