blob: 02df130714502b9f08db6cbe7ec2a20ab3b0efdd [file] [log] [blame]
/************************************************************************/
/* author : Mikkel Damsgaard */
/* Kirsebaerhaven 85b */
/* */
/* DK-8520 Lystrup */
/* email mikdam@daimi.aau.dk */
/* */
/* files : */
/* Divsol.c QRfact.h Divsol.h Jacobi.c */
/* Jacobi.h Triang.c print.c MM.c */
/* Triang.h print.h MM.h QRfact.c */
/* main.c main.h */
/* */
/* It calculates the eigenvalues for 4 different matrixes. It does not */
/* take any input; those 4 matrixes are calculated by MakeMatrix */
/* function. Output is given as 4 files: val2, val3, val4, val5, that */
/* contains the eigenvalues for each of the matrixes. */
/* */
/************************************************************************/
#ifndef MAIN__H__
#define MAIN__H__
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
typedef double **Matrix;
typedef double *Vector;
#define n 51
#define epsilon 1.0e-10
void Check(Matrix A,Matrix U,int l);
#endif