[fee079] | 1 | /*
|
---|
| 2 | * MatrixContent.hpp
|
---|
| 3 | *
|
---|
| 4 | * Created on: Jul 2, 2010
|
---|
| 5 | * Author: crueger
|
---|
| 6 | */
|
---|
| 7 |
|
---|
| 8 | #ifndef MATRIXCONTENT_HPP_
|
---|
| 9 | #define MATRIXCONTENT_HPP_
|
---|
| 10 |
|
---|
[3bc926] | 11 | /** MatrixContent is a wrapper for gsl_matrix.
|
---|
| 12 | *
|
---|
| 13 | * The GNU Scientific Library contaisn some very well written routines for
|
---|
| 14 | * linear algebra problems. However, it's syntax is C and hence it does not
|
---|
| 15 | * lend itself to readable written code, i.e. C = A * B, where A, B, and C
|
---|
| 16 | * are all matrices. Writing code this way is very convenient, concise and
|
---|
| 17 | * also in the same manner as one would type in MatLab.
|
---|
| 18 | * However, with C++ and its feature to overload functions and its operator
|
---|
| 19 | * functions such syntax is easy to create.
|
---|
| 20 | *
|
---|
| 21 | * Hence, this class is a C++ wrapper to gsl_matrix. There already some other
|
---|
| 22 | * libraries, however they fall short for the following reasons:
|
---|
| 23 | * -# gslwrap: not very well written and uses floats instead of doubles
|
---|
| 24 | * -# gslcpp: last change is from 2007 and only very few commits
|
---|
| 25 | * -# o2scl: basically, the same functionality as gsl only written in C++,
|
---|
| 26 | * however it uses GPLv3 license which is inconvenient for MoleCuilder.
|
---|
| 27 | *
|
---|
| 28 | * <h1>Howto use MatrixContent</h1>
|
---|
| 29 | *
|
---|
| 30 | * One should not use MatrixContent directly but either have it as a member
|
---|
| 31 | * variable in a specialized class or inherit from it.
|
---|
| 32 | *
|
---|
[fee079] | 33 | */
|
---|
| 34 |
|
---|
| 35 | #include <gsl/gsl_matrix.h>
|
---|
| 36 |
|
---|
[b4cf2b] | 37 | #include <iosfwd>
|
---|
| 38 |
|
---|
[3bc926] | 39 | class Vector;
|
---|
| 40 |
|
---|
| 41 | class MatrixContent
|
---|
| 42 | {
|
---|
| 43 | friend Vector operator*(const MatrixContent &mat,const Vector &vec);
|
---|
[b4cf2b] | 44 | friend std::ostream & operator<<(std::ostream &ost, const MatrixContent &mat);
|
---|
[cca9ef] | 45 | friend class RealSpaceMatrix;
|
---|
[0d4424] | 46 | friend class LinearSystemOfEquations;
|
---|
| 47 |
|
---|
| 48 | friend class MatrixContentTest;
|
---|
| 49 | friend class MatrixContentSymmetricTest;
|
---|
[3bc926] | 50 | public:
|
---|
| 51 | MatrixContent(size_t rows, size_t columns);
|
---|
| 52 | MatrixContent(size_t rows, size_t columns, const double *src);
|
---|
| 53 | MatrixContent(gsl_matrix *&src);
|
---|
| 54 | MatrixContent(const MatrixContent &src);
|
---|
| 55 | MatrixContent(const MatrixContent *src);
|
---|
| 56 | ~MatrixContent();
|
---|
| 57 |
|
---|
| 58 | // Accessing
|
---|
| 59 | double &at(size_t i, size_t j);
|
---|
| 60 | const double at(size_t i, size_t j) const;
|
---|
| 61 | void set(size_t i, size_t j, const double value);
|
---|
[bbf1bd] | 62 |
|
---|
| 63 | // Initializing
|
---|
[0d4424] | 64 | void setFromDoubleArray(double * x);
|
---|
[bbf1bd] | 65 | void setIdentity();
|
---|
| 66 | void setValue(double _value);
|
---|
| 67 | void setZero();
|
---|
[0d4424] | 68 |
|
---|
| 69 | // Exchanging elements
|
---|
| 70 | bool SwapRows(size_t i, size_t j);
|
---|
| 71 | bool SwapColumns(size_t i, size_t j);
|
---|
| 72 | bool SwapRowColumn(size_t i, size_t j);
|
---|
[3bc926] | 73 |
|
---|
| 74 | // Transformations
|
---|
| 75 | MatrixContent transpose() const;
|
---|
| 76 | MatrixContent &transpose();
|
---|
| 77 | gsl_vector* transformToEigenbasis();
|
---|
| 78 |
|
---|
[0d4424] | 79 | // Properties
|
---|
| 80 | bool IsNull() const;
|
---|
| 81 | bool IsPositive() const;
|
---|
| 82 | bool IsNegative() const;
|
---|
| 83 | bool IsNonNegative() const;
|
---|
| 84 | bool IsPositiveDefinite() const;
|
---|
| 85 | double Determinant() const;
|
---|
| 86 |
|
---|
[3bc926] | 87 | // Operators
|
---|
| 88 | MatrixContent &operator=(const MatrixContent &src);
|
---|
| 89 | const MatrixContent &operator+=(const MatrixContent &rhs);
|
---|
| 90 | const MatrixContent &operator-=(const MatrixContent &rhs);
|
---|
| 91 | const MatrixContent &operator*=(const MatrixContent &rhs);
|
---|
| 92 | const MatrixContent operator*(const MatrixContent &rhs) const;
|
---|
| 93 | const MatrixContent &operator*=(const double factor);
|
---|
| 94 | bool operator==(const MatrixContent &rhs) const;
|
---|
| 95 |
|
---|
[0d4424] | 96 | protected:
|
---|
| 97 | double *Pointer(size_t m, size_t n);
|
---|
| 98 | const double *const_Pointer(size_t m, size_t n) const;
|
---|
[3bc926] | 99 |
|
---|
| 100 | private:
|
---|
[fee079] | 101 | gsl_matrix * content;
|
---|
[3bc926] | 102 | const size_t rows; // store for internal purposes
|
---|
| 103 | const size_t columns; // store for internal purposes
|
---|
[fee079] | 104 | };
|
---|
| 105 |
|
---|
[3bc926] | 106 | const MatrixContent operator*(const double factor,const MatrixContent& mat);
|
---|
| 107 | const MatrixContent operator*(const MatrixContent &mat,const double factor);
|
---|
| 108 | Vector operator*(const MatrixContent &mat,const Vector &vec);
|
---|
[b4cf2b] | 109 | std::ostream & operator<<(std::ostream &ost, const MatrixContent &mat);
|
---|
[3bc926] | 110 |
|
---|
[fee079] | 111 | #endif /* MATRIXCONTENT_HPP_ */
|
---|