LIBML  Version 3.2.4
LIBML DSP Software Library
Functions
Matrix Inverse
Collaboration diagram for Matrix Inverse:

Functions

tpt_status tpt_mat_inverse_f32 (f32_t *aOutMat, f32_t *aInMat, uint32_t aN)
 Floating-point matrix inverse. More...
 
tpt_status tpt_mat_inverse_f64 (f64_t *aOutMat, f64_t *aInMat, uint16_t aN)
 Floating-point matrix inverse. More...
 

Detailed Description

Computes the inverse of a matrix.

The inverse is defined only if the input matrix is square and non-singular (the determinant is non-zero).

Matrix inversion is numerically sensitive and the DSP library only supports matrix inversion of floating-point matrices.

If the input matrix is singular, then the algorithm terminates and returns error status TPT_MATH_SINGULAR.

Function Documentation

◆ tpt_mat_inverse_f32()

tpt_status tpt_mat_inverse_f32 ( f32_t aOutMat,
f32_t aInMat,
uint32_t  aN 
)

Floating-point matrix inverse.

Parameters
[out]aOutMatpoints to output matrix.
[in]aInMatpoints to input matrix. The source matrix is modified by the function.
[in]aNorder of square matrix
Returns
execution status

◆ tpt_mat_inverse_f64()

tpt_status tpt_mat_inverse_f64 ( f64_t aOutMat,
f64_t aInMat,
uint16_t  aN 
)

Floating-point matrix inverse.

Parameters
[out]aOutMatpoints to output matrix.
[in]aInMatpoints to input matrix. The source matrix is modified by the function.
[in]aNorder of square matrix
Returns
execution status