|
PX4 Firmware
PX4 Autopilot Software http://px4.io
|
Matrix algebra on raw arrays. More...
#include <inttypes.h>#include <string.h>#include <math.h>Go to the source code of this file.
Functions | |
| float * | mat_mul (float *A, float *B, uint8_t n) |
| bool | mat_inverse (float *A, float *inv, uint8_t n) |
| bool | inverse4x4 (float m[], float invOut[]) |
Matrix algebra on raw arrays.
Definition in file matrix_alg.h.
| bool inverse4x4 | ( | float | m[], |
| float | invOut[] | ||
| ) |
Definition at line 260 of file matrix_alg.cpp.
| bool mat_inverse | ( | float * | A, |
| float * | inv, | ||
| uint8_t | n | ||
| ) |
Definition at line 215 of file matrix_alg.cpp.
| float* mat_mul | ( | float * | A, |
| float * | B, | ||
| uint8_t | n | ||
| ) |
Definition at line 53 of file matrix_alg.cpp.
References f().
Referenced by mat_inverse(), and mat_LU_decompose().