blob: 17570ed92af4b62f6f4f7eb807ba6c6044843f7e (
plain) (
blame)
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
|
# Definitions for the non-linear least-squares fitting package NLFIT
# define parameters for nlstat[ird]
define NLNPARAMS 1
define NLNFPARAMS 2
define NLITMAX 3
define NLITER 4
define NLSUMSQ 5
define NLOLDSQ 6
define NLLAMBDA 7
define NLTOL 8
define NLNPTS 9
define NLSCATTER 10
# define the weighting flags
define WTS_USER 1 # User enters weights
define WTS_UNIFORM 2 # Equal weights
define WTS_CHISQ 3 # Chi-squared weights (input data in photons)
define WTS_SCATTER 4 # Weights include an adjustable scatter term
# define the error conditions
define DONE 0 # Solution converged
define SINGULAR 1 # Singular matrix
define NO_DEG_FREEDOM 2 # Too few points
define NOT_DONE 3 # Solution did not converge
|