#include <gsl/gsl_eigen.h>
#include <vector>
Go to the source code of this file.
Classes | |
class | S_Engine |
Engine to pass in s values and retrieve eigen parameters in different formats. More... | |
Enumerations | |
enum | EigsEnum { KMAX = 1, KINT = 2, KMIN = 3 } |
Functions | |
size_t | GetIndex (const EigsEnum which, const gsl_vector *v) |
Used to pick out the index for Vmax/Tmax, Vint/Tint, Vmin/Tmin. Meant just to be a helper. | |
bool | GetEig (const EigsEnum which, const gsl_matrix *eigenvecs, const gsl_vector *eigenvals, float vec[3], float &val) |
Pick out a particular eigen vector/value. | |
bool | GetEigs (const gsl_matrix *eigenvec, const gsl_vector *eigenval, float newEigs[9]) |
Fill a lisa style eigen vector array. see s_eigs. |
|
Use K when you don't know if they are talking about value or vector. Otherwise use Vmax, Vint, Vmin for eigen VECTORS or Tmax, Tint, Tmin for tau/eigen VALUES |
|
Pick out a particular eigen vector/value.
|
|
Fill a lisa style eigen vector array. see s_eigs.
|
|
Used to pick out the index for Vmax/Tmax, Vint/Tint, Vmin/Tmin. Meant just to be a helper.
|