File: eigsubs.h

package info (click to toggle)
eigensoft 7.2.1%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,696 kB
  • sloc: ansic: 32,354; perl: 470; makefile: 107; sh: 10
file content (16 lines) | stat: -rw-r--r-- 427 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <stdio.h>
#include <limits.h>
#include <math.h>
#include <nicklib.h>

void eigvals (double *mat, double *evals, int n);
void eigvecs (double *mat, double *evals, double *evecs, int n);
void eigb (double *lam, double *a, double *b, int n);
void eigc (double *lam, double *a, double *b, int n);
double twestxx (double *lam, int m, double *pzn, double *pzvar);

typedef struct
{
  int vecno;
  double score;
} OUTLINFO;;