00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #include <itpp/itbase.h>
00013
00014 #ifndef ITEX_H
00015 #define ITEX_H
00016
00017 using std::cout;
00018 using std::endl;
00019
00020 namespace itpp {
00021 Array<int> to_Arr ( const ivec &indices );
00022 ivec linspace ( int from, int to );
00023
00024 bvec operator& ( const bvec &a, const bvec &b );
00025 bvec operator| ( const bvec &a, const bvec &b );
00026
00027
00028
00029
00030 void set_subvector ( vec &ov, const ivec &iv, const vec &v );
00031
00032 template<class Num_T> inline
00033 void set_col_part(mat &M, int c, const Vec<Num_T> &v)
00034 {
00035 copy_vector(v.size(), v._data(), M._data() + c*M.rows());
00036 }
00037
00042 class Gamma_RNG {
00043 public:
00045 Gamma_RNG ( double a=1.0, double b=1.0 );
00047 void setup ( double a0, double b0 ) { alpha=a0; beta=b0;}
00049 double get_setup() const;
00051 double operator() () { return sample(); }
00053 vec operator() ( int n );
00055 mat operator() ( int h, int w );
00056 protected:
00057 private:
00059 double sample();
00061 double alpha;
00063 double beta;
00065 Random_Generator RNG;
00066 Normal_RNG NRNG;
00068 inline double exp_rand() {return -std::log ( RNG.random_01() );}
00069 inline double unif_rand() {return RNG.random_01();}
00070 inline double norm_rand() {return NRNG.sample();}
00071
00072 };
00073
00074 bool qr ( const mat &A, mat &R );
00075
00076 }
00077
00078
00079 #endif //ITEX_H