[342f33f] | 1 | #ifndef VECTOR_HPP_
|
---|
| 2 | #define VECTOR_HPP_
|
---|
| 3 |
|
---|
[357fba] | 4 | using namespace std;
|
---|
| 5 |
|
---|
[f66195] | 6 | /*********************************************** includes ***********************************/
|
---|
| 7 |
|
---|
| 8 | // include config.h
|
---|
| 9 | #ifdef HAVE_CONFIG_H
|
---|
| 10 | #include <config.h>
|
---|
| 11 | #endif
|
---|
[357fba] | 12 |
|
---|
[986ed3] | 13 | #include <iosfwd>
|
---|
[54a746] | 14 |
|
---|
[1bd79e] | 15 | #include <memory>
|
---|
[45ef76] | 16 | #include <vector>
|
---|
[1bd79e] | 17 |
|
---|
[e4fe8d] | 18 | #include "Helpers/defs.hpp"
|
---|
[57f243] | 19 | #include "LinearAlgebra/Space.hpp"
|
---|
[f66195] | 20 |
|
---|
| 21 | /********************************************** declarations *******************************/
|
---|
[7d96c6] | 22 |
|
---|
[45ef76] | 23 | class Vector;
|
---|
[cca9ef] | 24 | class RealSpaceMatrix;
|
---|
[3bc926] | 25 | class MatrixContent;
|
---|
[ce3d2b] | 26 | struct VectorContent;
|
---|
[45ef76] | 27 |
|
---|
| 28 | typedef std::vector<Vector> pointset;
|
---|
| 29 |
|
---|
[342f33f] | 30 | /** Single vector.
|
---|
| 31 | * basically, just a x[3] but with helpful functions
|
---|
| 32 | */
|
---|
[1513a74] | 33 | class Vector : public Space{
|
---|
[3bc926] | 34 | friend Vector operator*(const MatrixContent&,const Vector&);
|
---|
[bbf1bd] | 35 | friend class RealSpaceMatrix; // needs access to Vector(VectorContent*&) due to views
|
---|
[1bd79e] | 36 | public:
|
---|
[042f82] | 37 | Vector();
|
---|
[fb73b8] | 38 | Vector(const double x1, const double x2, const double x3);
|
---|
[d74077] | 39 | Vector(const double x[3]);
|
---|
[0a4f7f] | 40 | Vector(const Vector& src);
|
---|
[72e7fa] | 41 | virtual ~Vector();
|
---|
| 42 |
|
---|
[1bd79e] | 43 | // Method implemented by forwarding to the Representation
|
---|
| 44 |
|
---|
[753f02] | 45 | double DistanceSquared(const Vector &y) const;
|
---|
[d4c9ae] | 46 | double DistanceToSpace(const Space& space) const;
|
---|
[753f02] | 47 | double ScalarProduct(const Vector &y) const;
|
---|
| 48 | double Angle(const Vector &y) const;
|
---|
[54a746] | 49 | bool IsZero() const;
|
---|
| 50 | bool IsOne() const;
|
---|
[753f02] | 51 | bool IsNormalTo(const Vector &normal) const;
|
---|
| 52 | bool IsEqualTo(const Vector &a) const;
|
---|
| 53 |
|
---|
| 54 | void AddVector(const Vector &y);
|
---|
| 55 | void SubtractVector(const Vector &y);
|
---|
| 56 | void VectorProduct(const Vector &y);
|
---|
| 57 | void ProjectOntoPlane(const Vector &y);
|
---|
| 58 | void ProjectIt(const Vector &y);
|
---|
| 59 | Vector Projection(const Vector &y) const;
|
---|
| 60 | void ScaleAll(const double *factor);
|
---|
[b5bf84] | 61 | void ScaleAll(const Vector &factor);
|
---|
[776b64] | 62 | void Scale(const double factor);
|
---|
[753f02] | 63 | bool GetOneNormalVector(const Vector &x1);
|
---|
| 64 | bool MakeNormalTo(const Vector &y1);
|
---|
[45ef76] | 65 | std::pair<Vector,Vector> partition(const Vector&) const;
|
---|
| 66 | std::pair<pointset,Vector> partition(const pointset&) const;
|
---|
[a439e5] | 67 | size_t GreatestComponent() const;
|
---|
| 68 | size_t SmallestComponent() const;
|
---|
[2ededc2] | 69 |
|
---|
[0a4f7f] | 70 | // Accessors ussually come in pairs... and sometimes even more than that
|
---|
[753f02] | 71 | double& operator[](size_t i);
|
---|
| 72 | const double& operator[](size_t i) const;
|
---|
[1bd79e] | 73 | double& at(size_t i);
|
---|
| 74 | const double& at(size_t i) const;
|
---|
[0a4f7f] | 75 |
|
---|
| 76 | // Assignment operator
|
---|
[753f02] | 77 | Vector &operator=(const Vector& src);
|
---|
[0a4f7f] | 78 |
|
---|
| 79 | // Access to internal structure
|
---|
[ae21cbd] | 80 | VectorContent* get() const;
|
---|
[72e7fa] | 81 |
|
---|
[1bd79e] | 82 | // Methods that are derived directly from other methods
|
---|
| 83 | double Norm() const;
|
---|
| 84 | double NormSquared() const;
|
---|
| 85 | void Normalize();
|
---|
[421a1f] | 86 | Vector getNormalized() const;
|
---|
[1bd79e] | 87 | void Zero();
|
---|
| 88 | void One(const double one);
|
---|
| 89 | void LinearCombinationOfVectors(const Vector &x1, const Vector &x2, const Vector &x3, const double * const factors);
|
---|
| 90 |
|
---|
[72e7fa] | 91 | // operators for mathematical operations
|
---|
| 92 | bool operator==(const Vector& b) const;
|
---|
[fa5a6a] | 93 | bool operator!=(const Vector& b) const;
|
---|
[72e7fa] | 94 | const Vector& operator+=(const Vector& b);
|
---|
| 95 | const Vector& operator-=(const Vector& b);
|
---|
| 96 | Vector const operator+(const Vector& b) const;
|
---|
| 97 | Vector const operator-(const Vector& b) const;
|
---|
[694eae] | 98 | const Vector& operator*=(const double m);
|
---|
| 99 | const Vector operator*(const double m) const;
|
---|
[0a4f7f] | 100 |
|
---|
[1513a74] | 101 | // Methods inherited from Space
|
---|
| 102 | virtual double distance(const Vector &point) const;
|
---|
| 103 | virtual Vector getClosestPoint(const Vector &point) const;
|
---|
| 104 |
|
---|
[1bd79e] | 105 | protected:
|
---|
| 106 |
|
---|
[0a4f7f] | 107 | private:
|
---|
[bbf1bd] | 108 | explicit Vector(VectorContent *&);
|
---|
| 109 | explicit Vector(VectorContent &_content);
|
---|
[ce3d2b] | 110 | VectorContent *content;
|
---|
[0a4f7f] | 111 |
|
---|
[342f33f] | 112 | };
|
---|
| 113 |
|
---|
[005e18] | 114 | // some commonly used and fixed vectors
|
---|
| 115 | const extern Vector zeroVec;
|
---|
[407782] | 116 | const extern Vector unitVec[NDIM];
|
---|
[005e18] | 117 |
|
---|
[9c20aa] | 118 | ostream & operator << (ostream& ost, const Vector &m);
|
---|
[694eae] | 119 | const Vector operator*(const double m, const Vector& a);
|
---|
[342f33f] | 120 |
|
---|
| 121 | #endif /*VECTOR_HPP_*/
|
---|