minuit.pd (PDL-2.078) | : | minuit.pd (PDL-2.079) | ||
---|---|---|---|---|
skipping to change at line 34 | skipping to change at line 34 | |||
=head1 SYNOPSIS | =head1 SYNOPSIS | |||
A basic fit with Minuit will call three functions in this package. First, a basi c | A basic fit with Minuit will call three functions in this package. First, a basi c | |||
initialization is done with mn_init(). Then, the parameters are defined via | initialization is done with mn_init(). Then, the parameters are defined via | |||
the function mn_def_pars(), which allows setting upper and lower bounds. Then | the function mn_def_pars(), which allows setting upper and lower bounds. Then | |||
the function mn_excm() can be used to issue many Minuit commands, including simp lex | the function mn_excm() can be used to issue many Minuit commands, including simp lex | |||
and migrad minimization algorithms (see Minuit manual for more details). | and migrad minimization algorithms (see Minuit manual for more details). | |||
See the test file minuit.t in the test (t/) directory for a basic example. | See the test file minuit.t in the test (t/) directory for a basic example. | |||
=cut | ||||
EOD | EOD | |||
pp_addpm(' | pp_addpm(' | |||
use strict; | use strict; | |||
use warnings; | use warnings; | |||
# Package variable | # Package variable | |||
my $mn_options; | my $mn_options; | |||
sub mn_init{ | sub mn_init{ | |||
my $fun_ref = shift; | my $fun_ref = shift; | |||
End of changes. 1 change blocks. | ||||
0 lines changed or deleted | 1 lines changed or added |