home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / octave-1.1.1p1-bin.lha / include / octave / NLFunc.h < prev    next >
C/C++ Source or Header  |  1996-10-12  |  2KB  |  75 lines

  1. // NLFunc.h                                                -*- C++ -*-
  2. /*
  3.  
  4. Copyright (C) 1992, 1993, 1994, 1995 John W. Eaton
  5.  
  6. This file is part of Octave.
  7.  
  8. Octave is free software; you can redistribute it and/or modify it
  9. under the terms of the GNU General Public License as published by the
  10. Free Software Foundation; either version 2, or (at your option) any
  11. later version.
  12.  
  13. Octave is distributed in the hope that it will be useful, but WITHOUT
  14. ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  15. FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  16. for more details.
  17.  
  18. You should have received a copy of the GNU General Public License
  19. along with Octave; see the file COPYING.  If not, write to the Free
  20. Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  
  22. */
  23.  
  24. #if !defined (octave_NLFunc_h)
  25. #define octave_NLFunc_h 1
  26.  
  27. class ColumnVector;
  28. class Matrix;
  29.  
  30. extern "C++" {
  31.  
  32. #ifndef Vector
  33. #define Vector ColumnVector
  34. #endif
  35.  
  36. typedef Vector (*nonlinear_fcn) (const Vector&);
  37. typedef Matrix (*jacobian_fcn) (const Vector&);
  38.  
  39. class NLFunc
  40. {
  41. public:
  42.  
  43.   NLFunc (void);
  44.   NLFunc (const nonlinear_fcn);
  45.   NLFunc (const nonlinear_fcn, const jacobian_fcn);
  46.  
  47.   NLFunc (const NLFunc& a);
  48.  
  49.   NLFunc& operator = (const NLFunc& a);
  50.  
  51.   nonlinear_fcn function (void) const;
  52.  
  53.   NLFunc& set_function (const nonlinear_fcn f);
  54.  
  55.   jacobian_fcn jacobian_function (void) const;
  56.  
  57.   NLFunc& set_jacobian_function (const jacobian_fcn j);
  58.  
  59. protected:
  60.  
  61.   nonlinear_fcn fun;
  62.   jacobian_fcn jac;
  63. };
  64.  
  65. } // extern "C++"
  66.  
  67. #endif
  68.  
  69. /*
  70. ;;; Local Variables: ***
  71. ;;; mode: C++ ***
  72. ;;; page-delimiter: "^/\\*" ***
  73. ;;; End: ***
  74. */
  75.