|
openCARP
Doxygen code documentation for the open cardiac electrophysiology simulator openCARP
|
#include "FMatrix.h"Go to the source code of this file.
Functions | |
| void | FM_Times_FM (FMatrix *A, FMatrix *B, FMatrix *C) |
| void | FM_Times_FMinArray (FMatrix *A, FMatrix *B, Real *C) |
| void | TransFM_Times_FM (FMatrix *A, FMatrix *B, FMatrix *C) |
| void | FM_Times_TransFM (FMatrix *A, FMatrix *B, FMatrix *C) |
| void | FM_Plus_FM (FMatrix *A, FMatrix *B, FMatrix *C) |
| void | FM_Times_Scalar (FMatrix *A, Real a) |
| Real | FMatrix_Det (FMatrix *M) |
| Real | FMatrix_Trace (FMatrix *M) |
| FMatrix * | FM_Rotate (FMatrix *R, double angle, int ax) |
| Real * | FM_X_Vec (FMatrix *A, Real *b, Real *c) |
| void | FM_Times_Vec (Real dx, FMatrix *B, Real *C, Real *result) |
| void | B_C_BTrans (Real dx, FMatrix *B, Real *C, FMatrix *result) |
| void | Print_FMatrix (FMatrix *A) |
Definition at line 543 of file FMatrix.cc.
add 2 FMatrices: C = A+B
Definition at line 196 of file FMatrix.cc.
rotation matrix
| R | the rotation matrix |
| angle | degrees to rotate in rad |
| ax | axis of rotation (x=0;y=1;z=2) |
Definition at line 478 of file FMatrix.cc.
Definition at line 93 of file FMatrix.cc.
Definition at line 119 of file FMatrix.cc.
Scale a FMatrix by a scalar value
| A | the matrix |
| a | the scalar |
Definition at line 227 of file FMatrix.cc.
Definition at line 169 of file FMatrix.cc.
Definition at line 522 of file FMatrix.cc.
c = Ab
| A | matrix |
| b | vector |
| c | result |
Definition at line 508 of file FMatrix.cc.
determinant of a matrix
Definition at line 235 of file FMatrix.cc.
trace of a matrix
Definition at line 292 of file FMatrix.cc.
| void Print_FMatrix | ( | FMatrix * | A | ) |
Definition at line 624 of file FMatrix.cc.
Definition at line 143 of file FMatrix.cc.