17int mneigen(
double *,
unsigned int,
unsigned int,
unsigned int,
double *,
double);
22 unsigned int nrow = mat.
Nrow();
27 for (
unsigned int i = 0; i < nrow; i++)
28 for (
unsigned int j = 0; j <= i; j++) {
29 tmp(i + j * nrow) = mat(i, j);
30 tmp(i * nrow + j) = mat(i, j);
33 int info =
mneigen(tmp.Data(), nrow, nrow, work.
size(), work.
Data(), 1.e-6);
38 for (
unsigned int i = 0; i < nrow; i++)
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t result
Class describing a symmetric matrix of size n.
unsigned int Nrow() const
const double * Data() const
unsigned int size() const
LAVector eigenvalues(const LASymMatrix &mat)
int mneigen(double *, unsigned int, unsigned int, unsigned int, double *, double)
tbb::task_arena is an alias of tbb::interface7::task_arena, which doesn't allow to forward declare tb...