home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1992 March / Source_Code_CD-ROM_Walnut_Creek_March_1992.iso / usenet / altsrcs / 2 / 2398 / README < prev    next >
Encoding:
Text File  |  1990-12-28  |  2.8 KB  |  51 lines

  1.  
  2. nlmdl is a C++ implementation of the statistical methods in A. Ronald Gallant, 
  3. "Nonlinear Statistical Models," New York: John Wiley and Sons, 1987, 
  4. ISBN 0-471-80260-3, using a matrix class realmat that is distributed with it.  
  5. The matrix class may be of some independent interest.  
  6.  
  7. The program computes least squares estimates for a univariate nonlinear 
  8. regression model and generalized least squares estimates for a multivariate 
  9. nonlinear regression model.  Use the SUR option for both.  Other options can be 
  10. set to correct variance estimates for heteroskedasticity and/or serial 
  11. correlation.  For simultaneous nonlinear systems, possibly in implicit form, it 
  12. computes three-stage least-squares estimates, TSLS option, and for nonlinear 
  13. dynamic systems, possibly in implicit form, generalized method-of-moments 
  14. estimates, GMM option.  
  15.  
  16. The documentation consists of this file, the two header files nlmdl.h and 
  17. realmat.h, and the examples in the directories ch1eg1, ch5eg1, ch6eg1, and 
  18. ch6eg2.  
  19.  
  20. As distributed, the code is set up for use with GNU's g++ compiler on a Unix 
  21. box.  To check using one of the examples, e.g. ch1eg1, cd to ch1eg1 and type 
  22. make -f ../Makefile.  Each directory has a file detail.bak created using 
  23. nlmdl > detail.dat that you can use for comparison.  
  24.  
  25. Although intended for use with GNU's g++ compiler, the code can be used with 
  26. Borland's Turbo C++ compiler.  To use Turbo C++, permute the #undef and #define 
  27. for compiler choice in usual.h, copy the contents of, e.g., ch1eg1 to the 
  28. working directory, and list every file with a .cc extension in the .PRJ file 
  29. except nlopr.cc.  Small models, such as ch1eg1, execute correctly when compiled 
  30. with the large memory option but larger ones, such as ch5eg2, run out of memory 
  31. during execution.  I haven't tried Turbo's overlay and memory expansion 
  32. features to see if larger models can be accommodated.  The code hasn't been 
  33. tested with other C++ compilers.  
  34.  
  35. Copyright (C) 1990 by A. Ronald Gallant.
  36.  
  37. Permission to use, copy, modify, and distribute this software and its 
  38. documentation for any purpose and without fee is hereby granted, provided that 
  39. the above copyright notice appear in all copies and that both that copyright 
  40. notice and this permission notice appear in supporting documentation.  
  41.  
  42. This software is provided "as is" without any expressed or implied warranty.
  43.  
  44. -------------------------------------------------------------------------------
  45. Professor A. Ronald Gallant        Phone:  919-737-2531
  46. Department of Statistics           FAX:    919-737-7591
  47. North Carolina State University    e-mail: arg@ccvr1.cc.ncsu.edu
  48. Campus Box 8203                    ftp:    ccvr1.cc.ncsu.edu (128.109.212.20), 
  49. Raleigh NC 27695-8203 USA                  user: anonymous, directory: pub/arg 
  50. -------------------------------------------------------------------------------
  51.