File: ProcJacobiSVD.h

package info (click to toggle)
theseus 3.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 6,152 kB
  • ctags: 2,447
  • sloc: ansic: 42,404; makefile: 250; sh: 131
file content (25 lines) | stat: -rw-r--r-- 790 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef PROCJACOBISVD_SEEN
#define PROCJACOBISVD_SEEN

#include "FragCds.h"

double
ProcJacobiSVD(const Cds *cds1, const Cds *cds2, double **rotmat,
              const double *weights,
              double **Rmat, double **Umat, double **VTmat, double *sigma);

double
ProcJacobiSVDvan(const Cds *cds1, const Cds *cds2, double **rotmat,
                 double **Rmat, double **Umat, double **VTmat, double *sigma);

double
ProcJacobiSVDCov(Cds *cds1, Cds *cds2, double **rotmat,
                 const double **covmat,
                 double **Rmat, double **Umat, double **VTmat,
                 double *sigma);

double
ProcJacobiSVDFrag(const FragCds *cds1, const FragCds *cds2, double **rotmat,
                  double **Rmat, double **Umat, double **VTmat, double *sigma);

#endif