| 1 | // This may look like C code, but it is really -*- C++ -*- | 
|---|
| 2 | //     Utility classes for template numerical arrays | 
|---|
| 3 | //                     R. Ansari, C.Magneville   03/2000 | 
|---|
| 4 |  | 
|---|
| 5 | #ifndef UtilArray_SEEN | 
|---|
| 6 | #define UtilArray_SEEN | 
|---|
| 7 |  | 
|---|
| 8 | #include "machdefs.h" | 
|---|
| 9 | #include "mutyv.h" | 
|---|
| 10 |  | 
|---|
| 11 | #include <stdlib.h> | 
|---|
| 12 | #include <vector> | 
|---|
| 13 |  | 
|---|
| 14 | namespace SOPHYA { | 
|---|
| 15 |  | 
|---|
| 16 | /* Quelques utilitaires pour les tableaux (Array) */ | 
|---|
| 17 |  | 
|---|
| 18 | /*! \ingroup TArray | 
|---|
| 19 | \typedef Arr_DoubleFunctionOfX | 
|---|
| 20 | \brief define a function of float which returns a double | 
|---|
| 21 | */ | 
|---|
| 22 | typedef double (* Arr_DoubleFunctionOfX) (double x); | 
|---|
| 23 | /*! \ingroup TArray | 
|---|
| 24 | \typedef Arr_FloatFunctionOfX | 
|---|
| 25 | \brief define a function of float which returns a double | 
|---|
| 26 | */ | 
|---|
| 27 | typedef float  (* Arr_FloatFunctionOfX)  (float x); | 
|---|
| 28 |  | 
|---|
| 29 | ////////////////////////////////////////////////////////// | 
|---|
| 30 | //! Class to generate a sequence of values | 
|---|
| 31 | class Sequence { | 
|---|
| 32 | public: | 
|---|
| 33 | virtual ~Sequence(); | 
|---|
| 34 | virtual MuTyV & Value(sa_size_t k) const = 0; | 
|---|
| 35 | inline MuTyV & operator () (sa_size_t k) const { return(Value(k)) ; } | 
|---|
| 36 | }; | 
|---|
| 37 |  | 
|---|
| 38 | class RandomSequence : public Sequence { | 
|---|
| 39 | public: | 
|---|
| 40 | //! to define the generator type | 
|---|
| 41 | enum { | 
|---|
| 42 | Gaussian = 0, //!< gaussian generator | 
|---|
| 43 | Flat = 1      //!< Flat generator | 
|---|
| 44 | }; | 
|---|
| 45 |  | 
|---|
| 46 | explicit RandomSequence(int typ = RandomSequence::Gaussian, double m=0., double s=1.); | 
|---|
| 47 | virtual  ~RandomSequence(); | 
|---|
| 48 | virtual MuTyV & Value(sa_size_t k) const ; | 
|---|
| 49 | double   Rand(); | 
|---|
| 50 |  | 
|---|
| 51 | protected: | 
|---|
| 52 | int typ_;            //!< random generation type | 
|---|
| 53 | double mean_, sig_;  //!< generation parameters mean and sigma (if needed) | 
|---|
| 54 | mutable MuTyV retv_; | 
|---|
| 55 | }; | 
|---|
| 56 |  | 
|---|
| 57 |  | 
|---|
| 58 | ////////////////////////////////////////////////////////// | 
|---|
| 59 | //! Class to generate a sequence of values | 
|---|
| 60 | class RegularSequence : public Sequence { | 
|---|
| 61 | public: | 
|---|
| 62 | explicit RegularSequence (double start=0., double step=1., Arr_DoubleFunctionOfX f=NULL); | 
|---|
| 63 | virtual  ~RegularSequence(); | 
|---|
| 64 |  | 
|---|
| 65 | //! return start value of the sequence | 
|---|
| 66 | inline double & Start() { return start_; } | 
|---|
| 67 | //! return step value of the sequence | 
|---|
| 68 | inline double & Step() { return step_; } | 
|---|
| 69 |  | 
|---|
| 70 | virtual MuTyV & Value(sa_size_t k) const ; | 
|---|
| 71 |  | 
|---|
| 72 | protected: | 
|---|
| 73 | double start_;              //!< start value of the sequence | 
|---|
| 74 | double step_;               //!< step value of the sequence | 
|---|
| 75 | Arr_DoubleFunctionOfX myf_; //!< pointer to the sequence function | 
|---|
| 76 | mutable MuTyV retv_; | 
|---|
| 77 | }; | 
|---|
| 78 |  | 
|---|
| 79 | class EnumeratedSequence : public Sequence  { | 
|---|
| 80 | public: | 
|---|
| 81 | explicit EnumeratedSequence(); | 
|---|
| 82 | virtual ~EnumeratedSequence(); | 
|---|
| 83 | virtual MuTyV & Value(sa_size_t k) const ; | 
|---|
| 84 | EnumeratedSequence & operator , (MuTyV const & v); | 
|---|
| 85 | EnumeratedSequence & operator = (MuTyV const & v); | 
|---|
| 86 | private: | 
|---|
| 87 | vector<MuTyV> vecv_; | 
|---|
| 88 | mutable MuTyV retv_; | 
|---|
| 89 | }; | 
|---|
| 90 |  | 
|---|
| 91 | //inline EnumeratedSequence operator , (MuTyV const & a, MuTyV const & b) | 
|---|
| 92 | //{ EnumeratedSequence seq;   return ((seq,a),b) ; } | 
|---|
| 93 |  | 
|---|
| 94 | ////////////////////////////////////////////////////////// | 
|---|
| 95 | //! Class to define a range of indexes | 
|---|
| 96 | class Range { | 
|---|
| 97 | public: | 
|---|
| 98 | explicit Range(sa_size_t start=0, sa_size_t end=0, sa_size_t size=1, sa_size_t step=1); | 
|---|
| 99 | //! Return the start index | 
|---|
| 100 | inline sa_size_t & Start()  {  return start_; } | 
|---|
| 101 | //! Return the last index | 
|---|
| 102 | inline sa_size_t & End()    {  return end_; } | 
|---|
| 103 | //! Return the size | 
|---|
| 104 | inline sa_size_t & Size()   {  return size_; } | 
|---|
| 105 | //! Return the step | 
|---|
| 106 | inline sa_size_t & Step()   {  return step_; } | 
|---|
| 107 | protected: | 
|---|
| 108 | sa_size_t start_; //!< start index | 
|---|
| 109 | sa_size_t end_;   //!< end index | 
|---|
| 110 | sa_size_t size_;  //!< size | 
|---|
| 111 | sa_size_t step_;  //!< step | 
|---|
| 112 | }; | 
|---|
| 113 |  | 
|---|
| 114 | ////////////////////////////////////////////////////////// | 
|---|
| 115 | //! Class to define an identity matrix | 
|---|
| 116 | class IdentityMatrix { | 
|---|
| 117 | public: | 
|---|
| 118 | explicit IdentityMatrix(double diag=1., sa_size_t n=0); | 
|---|
| 119 | //! return the size of the identity matrix | 
|---|
| 120 | inline sa_size_t Size() { return size_; } | 
|---|
| 121 | //! return the value of the diagonal elements | 
|---|
| 122 | inline double Diag() { return diag_; } | 
|---|
| 123 | protected: | 
|---|
| 124 | sa_size_t size_; //!< size of the matrix | 
|---|
| 125 | double diag_; //!< value of the diagonal elements | 
|---|
| 126 | }; | 
|---|
| 127 |  | 
|---|
| 128 | } // Fin du namespace | 
|---|
| 129 |  | 
|---|
| 130 | #endif | 
|---|