#include <math.h>
Go to the source code of this file.
Typedefs | |
| typedef float ** | matrix |
Functions | |
| void | addMatrix (matrix A, matrix B, matrix C, int m, int n) |
| void | addVector (float *A, float *B, float *C, int m) |
| float | BhQhBhT (matrix Qh, float *Bh, float *tmp) |
| float | determinant (matrix A, matrix tmp, int n) |
| void | getMinor (matrix A, matrix B, int An, int m, int n) |
| void | invert2 (matrix A, matrix B) |
| void | invert3 (matrix A, matrix B) |
| void | invt (matrix A, matrix B, matrix tmp1, matrix tmp2, int An) |
| void | multMatrix (matrix A, matrix B, matrix C, int Am, int An, int Bn) |
| void | multMatVec (matrix A, float *B, float *C, int Am, int Bn) |
| void | negMatrix (matrix A, int m, int n) |
| void | subMatrix (matrix A, matrix B, matrix C, int m, int n) |
| void | subVector (float *A, float *B, float *C, int m) |
| void | transpose (matrix A, matrix B, int Am, int An) |
| void | VectdivSc (float *V, float scl) |
| typedef float** matrix |
Definition at line 5 of file matrices2.h.
Definition at line 24 of file matrices2.h.
| void addVector | ( | float * | A, |
| float * | B, | ||
| float * | C, | ||
| int | m | ||
| ) |
Definition at line 35 of file matrices2.h.
Definition at line 212 of file matrices2.h.
| float determinant | ( | matrix | A, |
| matrix | tmp, | ||
| int | n | ||
| ) |
Definition at line 143 of file matrices2.h.
Definition at line 170 of file matrices2.h.
Definition at line 118 of file matrices2.h.
Definition at line 191 of file matrices2.h.
| void multMatrix | ( | matrix | A, |
| matrix | B, | ||
| matrix | C, | ||
| int | Am, | ||
| int | An, | ||
| int | Bn | ||
| ) |
Definition at line 77 of file matrices2.h.
| void multMatVec | ( | matrix | A, |
| float * | B, | ||
| float * | C, | ||
| int | Am, | ||
| int | Bn | ||
| ) |
Definition at line 93 of file matrices2.h.
Definition at line 66 of file matrices2.h.
Definition at line 44 of file matrices2.h.
| void subVector | ( | float * | A, |
| float * | B, | ||
| float * | C, | ||
| int | m | ||
| ) |
Definition at line 55 of file matrices2.h.
Definition at line 109 of file matrices2.h.
| void VectdivSc | ( | float * | V, |
| float | scl | ||
| ) |
Definition at line 237 of file matrices2.h.