-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathnr.h
29 lines (25 loc) · 903 Bytes
/
nr.h
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
26
27
28
29
/*==================================================
SET TABSTOPS AT EVERY FOUR SPACES FOR PROPER DISPLAY
====================================================*/
/****************************************************************************
* FILE: nr.h
* DATE: June, 1993
* BY: Andrew L. Thomas
*
* Header file for nr.c
*****************************************************************************/
#ifndef _NR_H_
#define _NR_H_
/************************* Function Declarations ****************************/
#if defined(__STDC__) || defined(ANSI) /* ANSI */
void d_eigsrt(double d[], double **v, int n);
void d_lubksb(double **a, int n, int *indx, double b[]);
void d_ludcmp(double **a, int n, int *indx, double *d);
void d_jacobi(double **a, int n, double d[], double **v, int *nrot);
#else
void d_eigsrt();
void d_lubksb();
void d_ludcmp();
void d_jacobi();
#endif /* ANSI */
#endif /* _NR_H_ */