[ce3d2b] | 1 | /*
|
---|
| 2 | * VectorContent.hpp
|
---|
| 3 | *
|
---|
| 4 | * Created on: Jul 2, 2010
|
---|
| 5 | * Author: crueger
|
---|
| 6 | */
|
---|
| 7 |
|
---|
| 8 | #ifndef VECTORCONTENT_HPP_
|
---|
| 9 | #define VECTORCONTENT_HPP_
|
---|
| 10 |
|
---|
| 11 | /**
|
---|
| 12 | * !file
|
---|
| 13 | * The way GSL works does not allow for forward definitions of the structures.
|
---|
| 14 | * Because of this the pointer to the gsl_vector struct is wrapped inside another
|
---|
[9d5ddf] | 15 | * (dumb) object that allows for forward definitions.
|
---|
[bc8a41] | 16 | *
|
---|
| 17 | * DO NOT USE OUTSIDE OF VECTOR UNLESS YOU ABSOLUTELY HAVE TO AND KNOW WHAT YOU ARE DOING.
|
---|
[ce3d2b] | 18 | */
|
---|
| 19 |
|
---|
[bbf1bd] | 20 | #include <iosfwd>
|
---|
| 21 |
|
---|
[ce3d2b] | 22 | #include <gsl/gsl_vector.h>
|
---|
| 23 |
|
---|
[bbf1bd] | 24 | class Vector;
|
---|
| 25 |
|
---|
| 26 | /** Dummy structure to create a unique signature.
|
---|
| 27 | *
|
---|
| 28 | */
|
---|
[8e9ce1] | 29 | struct VectorBaseCase{};
|
---|
[8e17d6] | 30 |
|
---|
[bbf1bd] | 31 | class VectorContent{
|
---|
| 32 | friend std::ostream & operator<< (std::ostream& ost, const VectorContent &m);
|
---|
| 33 | friend VectorContent const operator*(const VectorContent& a, const double m);
|
---|
| 34 | friend VectorContent const operator*(const double m, const VectorContent& a);
|
---|
| 35 | friend VectorContent const operator+(const VectorContent& a, const VectorContent& b);
|
---|
| 36 | friend VectorContent const operator-(const VectorContent& a, const VectorContent& b);
|
---|
[8e17d6] | 37 |
|
---|
[bbf1bd] | 38 | public:
|
---|
| 39 | explicit VectorContent(size_t _dim);
|
---|
[8e9ce1] | 40 | VectorContent(VectorBaseCase);
|
---|
[bbf1bd] | 41 | VectorContent(const VectorContent * const src);
|
---|
| 42 | VectorContent(const VectorContent & src);
|
---|
[f453d2] | 43 | VectorContent(gsl_vector * _src);
|
---|
[bbf1bd] | 44 | virtual ~VectorContent();
|
---|
| 45 |
|
---|
| 46 | // Accessing
|
---|
| 47 | double &at(size_t m);
|
---|
| 48 | const double at(size_t m) const;
|
---|
| 49 | double & operator[](size_t i);
|
---|
| 50 | const double operator[](size_t i) const;
|
---|
| 51 | double *Pointer(size_t m) const;
|
---|
| 52 | const double *const_Pointer(size_t m) const;
|
---|
| 53 |
|
---|
| 54 | // Assignment operator
|
---|
| 55 | VectorContent &operator=(const VectorContent& src);
|
---|
| 56 |
|
---|
| 57 | // Initializing
|
---|
| 58 | void setFromDoubleArray(double * x);
|
---|
| 59 | void setFromVector(Vector &v);
|
---|
| 60 | void setValue(double x);
|
---|
| 61 | void setZero();
|
---|
| 62 | int setBasis(size_t m);
|
---|
| 63 |
|
---|
| 64 | // Exchanging elements
|
---|
| 65 | int SwapElements(size_t i, size_t j);
|
---|
| 66 | int Reverse();
|
---|
| 67 |
|
---|
| 68 | // checking state
|
---|
| 69 | bool IsZero() const;
|
---|
| 70 | bool IsOne() const;
|
---|
| 71 |
|
---|
| 72 | // properties
|
---|
| 73 | bool IsNormalTo(const Vector &normal) const;
|
---|
| 74 | bool IsEqualTo(const Vector &a) const;
|
---|
| 75 |
|
---|
| 76 | // properties relative to another VectorContent
|
---|
| 77 | double DistanceSquared(const VectorContent &y) const;
|
---|
| 78 | double ScalarProduct(const VectorContent &y) const;
|
---|
| 79 | double Angle(const VectorContent &y) const;
|
---|
| 80 |
|
---|
| 81 | // operators
|
---|
| 82 | bool operator==(const VectorContent& b) const;
|
---|
| 83 | const VectorContent& operator+=(const VectorContent& b);
|
---|
| 84 | const VectorContent& operator-=(const VectorContent& b);
|
---|
| 85 | const VectorContent& operator*=(const double m);
|
---|
[0fd3f2] | 86 | const double operator*(const VectorContent& b);
|
---|
[bbf1bd] | 87 |
|
---|
| 88 | size_t dimension;
|
---|
[ce3d2b] | 89 | gsl_vector *content;
|
---|
[bbf1bd] | 90 | private:
|
---|
[ce3d2b] | 91 | };
|
---|
| 92 |
|
---|
[bbf1bd] | 93 | std::ostream & operator << (std::ostream& ost, const VectorContent &m);
|
---|
| 94 | VectorContent const operator*(const VectorContent& a, const double m);
|
---|
| 95 | VectorContent const operator*(const double m, const VectorContent& a);
|
---|
| 96 | VectorContent const operator+(const VectorContent& a, const VectorContent& b);
|
---|
| 97 | VectorContent const operator-(const VectorContent& a, const VectorContent& b);
|
---|
| 98 |
|
---|
| 99 | /** Vector view.
|
---|
| 100 | * Extension of VectorContent to contain not a gsl_vector but only a view on a
|
---|
| 101 | * gsl_vector (or row/column in a gsl_matrix).
|
---|
| 102 | *
|
---|
[8e9ce1] | 103 | * We need the above VectorBaseCase here:
|
---|
[bbf1bd] | 104 | * content, i.e. the gsl_vector, must not be allocated, as it is just a view
|
---|
[8e9ce1] | 105 | * with an internal gsl_vector_view. Hence, VectorBaseCase is just dummy class
|
---|
| 106 | * to give the constructor a unique signature.
|
---|
[bbf1bd] | 107 | */
|
---|
| 108 | struct VectorViewContent : public VectorContent
|
---|
| 109 | {
|
---|
[8e17d6] | 110 | VectorViewContent(gsl_vector_view _view) :
|
---|
[8e9ce1] | 111 | VectorContent(VectorBaseCase()),
|
---|
[8e17d6] | 112 | view(_view)
|
---|
| 113 | {
|
---|
[bbf1bd] | 114 | dimension = _view.vector.size;
|
---|
[8e17d6] | 115 | content=&view.vector;
|
---|
| 116 | }
|
---|
[bbf1bd] | 117 | ~VectorViewContent(){
|
---|
[3dbb9d] | 118 | content=0;
|
---|
| 119 | }
|
---|
[8e17d6] | 120 | gsl_vector_view view;
|
---|
| 121 | };
|
---|
| 122 |
|
---|
[ce3d2b] | 123 | #endif /* VECTORCONTENT_HPP_ */
|
---|