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 vec get_vec(const vec &v, const ivec &indexlist);
00025
00026 bvec operator& ( const bvec &a, const bvec &b );
00027 bvec operator| ( const bvec &a, const bvec &b );
00028
00029
00030
00031
00032 void set_subvector ( vec &ov, const ivec &iv, const vec &v );
00033
00034 template<class Num_T> inline
00035 void set_col_part(mat &M, int c, const Vec<Num_T> &v)
00036 {
00037 copy_vector(v.size(), v._data(), M._data() + c*M.rows());
00038 }
00039
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076
00078 std::string num2str(double d);
00079
00081 std::string num2str(int i);
00082
00084 double psi(double);
00085 }
00086
00087
00088 #endif //ITEX_H