aboutsummaryrefslogtreecommitdiff
path: root/math/nlfit/nlpgetr.x
blob: 73fd7cbb8b7de4cb8eedb0d81ccc83a073884050 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
include "nlfitdefr.h"

# NLPGET - Retreive parameter values

procedure nlpgetr (nl, params, nparams)

pointer	nl			# pointer to the nlfit structure
real	params[ARB]		# parameter array
int	nparams			# the number of the parameters

begin
	nparams = NL_NPARAMS(nl)
	call amovr (PARAM(NL_PARAM(nl)), params, nparams)
end