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

  1. // Bounds.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_Bounds_h)
  25. #define octave_Bounds_h 1
  26.  
  27. class ostream;
  28.  
  29. #include "dColVector.h"
  30.  
  31. extern "C++" {
  32.  
  33. #ifndef Vector
  34. #define Vector ColumnVector
  35. #endif
  36.  
  37. class Bounds
  38. {
  39. public:
  40.  
  41.   Bounds (void);
  42.   Bounds (int n);
  43.   Bounds (const Vector lb, const Vector ub);
  44.   Bounds (const Bounds& a);
  45.  
  46.   Bounds& operator = (const Bounds& a);
  47.  
  48.   Bounds& resize (int n);
  49.  
  50.   double lower_bound (int index) const;
  51.   double upper_bound (int index) const;
  52.  
  53.   Vector lower_bounds (void) const;
  54.   Vector upper_bounds (void) const;
  55.  
  56.   int size (void) const;
  57.  
  58.   Bounds& set_bound (int index, double low, double high);
  59.  
  60.   Bounds& set_bounds (double low, double high);
  61.   Bounds& set_bounds (const Vector lb, const Vector ub);
  62.  
  63.   Bounds& set_lower_bound (int index, double low);
  64.   Bounds& set_upper_bound (int index, double high);
  65.  
  66.   Bounds& set_lower_bounds (double low);
  67.   Bounds& set_upper_bounds (double high);
  68.  
  69.   Bounds& set_lower_bounds (const Vector lb);
  70.   Bounds& set_upper_bounds (const Vector ub);
  71.  
  72.   friend ostream& operator << (ostream& os, const Bounds& b);
  73.  
  74. protected:
  75.  
  76.   Vector lb;
  77.   Vector ub;
  78.  
  79.   int nb;
  80.  
  81. private:
  82.  
  83.   void error (const char *msg);
  84.  
  85. };
  86.  
  87. } // extern "C++"
  88.  
  89. #endif
  90.  
  91. /*
  92. ;;; Local Variables: ***
  93. ;;; mode: C++ ***
  94. ;;; page-delimiter: "^/\\*" ***
  95. ;;; End: ***
  96. */
  97.