[comp.archives] [sources] nlmdl

arg@ccvr1.ncsu.edu (Ron Gallant) (01/03/91)

Archive-name: languages/c++/nlmdl/1991-01-02
Archive-directory: ccvr1.cc.ncsu.edu:/pub/arg/nlmdl/ [128.109.212.20]
Original-posting-by: arg@ccvr1.ncsu.edu (Ron Gallant)
Original-subject: nlmdl
Reposted-by: emv@ox.com (Edward Vielmetti)

nlmdl was released through alt.sources on December 22, 1990.

An updated version with a more efficient matrix class is available via ftp 
anonymous at ccvr1.cc.ncsu.edu (128.109.212.20) in directory pub/arg/nlmdl.  

The updated version also fixes a potentially serious bug in nlmdl.cc.  The line
    for (INTEGER i = 0; i <= s.p; i++) s.V.elem(i,i) = 1.0;
should read 
    for (INTEGER i = 1; i <= s.p; i++) s.V.elem(i,i) = 1.0;

nlmdl is a C++ implementation of the statistical methods in A. Ronald Gallant, 
"Nonlinear Statistical Models," New York: John Wiley and Sons, 1987, using a 
matrix class, realmat, that is distributed with it.

-------------------------------------------------------------------------------
Professor A. Ronald Gallant        Phone:  919-737-2531
Department of Statistics           FAX:    919-737-7591
North Carolina State University    e-mail: arg@ccvr1.cc.ncsu.edu
Campus Box 8203                    ftp:    ccvr1.cc.ncsu.edu (128.109.212.20), 
Raleigh NC 27695-8203 USA                  user: anonymous, directory: pub/arg 
-------------------------------------------------------------------------------