Newsgroups: comp.archives
Path: utzoo!utgpu!news-server.csri.toronto.edu!ox.com!emv
From: arg@ccvr1.ncsu.edu (Ron Gallant)
Subject: [sources] nlmdl
Message-ID: <1991Jan3.023251.10970@ox.com>
Followup-To: alt.sources
Sender: emv@ox.com (Edward Vielmetti)
Reply-To: arg@ccvr1.ncsu.edu (Ron Gallant)
Organization: NCSU Computing Center
References: <1991Jan2.125452.6049@ncsuvx.ncsu.edu>
Date: Thu, 3 Jan 91 02:32:51 GMT
Approved: emv@ox.com (Edward Vielmetti)
X-Original-Newsgroups: alt.sources

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 
-------------------------------------------------------------------------------
