source: src/LinearAlgebra/MatrixContent.hpp@ 644d03

Action_Thermostats Add_AtomRandomPerturbation Add_FitFragmentPartialChargesAction Add_RotateAroundBondAction Add_SelectAtomByNameAction Added_ParseSaveFragmentResults AddingActions_SaveParseParticleParameters Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_ParticleName_to_Atom Adding_StructOpt_integration_tests AtomFragments Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.5.4 Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator CombiningParticlePotentialParsing Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_BoundInBox_CenterInBox_MoleculeActions Fix_ChargeSampling_PBC Fix_ChronosMutex Fix_FitPartialCharges Fix_FitPotential_needs_atomicnumbers Fix_ForceAnnealing Fix_IndependentFragmentGrids Fix_ParseParticles Fix_ParseParticles_split_forward_backward_Actions Fix_PopActions Fix_QtFragmentList_sorted_selection Fix_Restrictedkeyset_FragmentMolecule Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns Fix_fitting_potentials Fixes ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion FragmentAction_writes_AtomFragments FragmentMolecule_checks_bonddegrees GeometryObjects Gui_Fixes Gui_displays_atomic_force_velocity ImplicitCharges IndependentFragmentGrids IndependentFragmentGrids_IndividualZeroInstances IndependentFragmentGrids_IntegrationTest IndependentFragmentGrids_Sole_NN_Calculation JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix MoreRobust_FragmentAutomation ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PdbParser_setsAtomName PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks Rewrite_FitPartialCharges RotateToPrincipalAxisSystem_UndoRedo SaturateAtoms_findBestMatching SaturateAtoms_singleDegree StoppableMakroAction Subpackage_CodePatterns Subpackage_JobMarket Subpackage_LinearAlgebra Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg Switchable_LogView ThirdParty_MPQC_rebuilt_buildsystem TrajectoryDependenant_MaxOrder TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps TremoloParser_setsAtomName Ubuntu_1604_changes stable
Last change on this file since 644d03 was 644d03, checked in by Frederik Heber <heber@…>, 14 years ago

Added operator+ and operator- for two MatrixContent's.

  • Property mode set to 100644
File size: 5.3 KB
Line 
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
11// include config.h
12#ifdef HAVE_CONFIG_H
13#include <config.h>
14#endif
15
16
17/** MatrixContent is a wrapper for gsl_matrix.
18 *
19 * The GNU Scientific Library contaisn some very well written routines for
20 * linear algebra problems. However, it's syntax is C and hence it does not
21 * lend itself to readable written code, i.e. C = A * B, where A, B, and C
22 * are all matrices. Writing code this way is very convenient, concise and
23 * also in the same manner as one would type in MatLab.
24 * However, with C++ and its feature to overload functions and its operator
25 * functions such syntax is easy to create.
26 *
27 * Hence, this class is a C++ wrapper to gsl_matrix. There already some other
28 * libraries, however they fall short for the following reasons:
29 * -# gslwrap: not very well written and uses floats instead of doubles
30 * -# gslcpp: last change is from 2007 and only very few commits
31 * -# o2scl: basically, the same functionality as gsl only written in C++,
32 * however it uses GPLv3 license which is inconvenient for MoleCuilder.
33 *
34 * <h1>Howto use MatrixContent</h1>
35 *
36 * One should not use MatrixContent directly but either have it as a member
37 * variable in a specialized class or inherit from it.
38 *
39 */
40
41#include <gsl/gsl_matrix.h>
42
43#include <iosfwd>
44
45#include "LinearAlgebra/MatrixVector_ops.hpp"
46
47class VectorContent;
48
49/** Dummy structure to create a unique signature.
50 *
51 */
52struct MatrixBaseCase{};
53
54class MatrixContent
55{
56 friend std::ostream & operator<<(std::ostream &ost, const MatrixContent &mat);
57 friend class RealSpaceMatrix;
58 friend class LinearSystemOfEquations;
59
60 // matrix vector products
61 friend VectorContent const operator*(const VectorContent& vec, const MatrixContent& mat);
62 friend VectorContent const operator*(const MatrixContent& mat, const VectorContent& vec);
63 friend MatrixContent const operator+(const MatrixContent& a, const MatrixContent& b);
64 friend MatrixContent const operator-(const MatrixContent& a, const MatrixContent& b);
65
66 // unit tests
67 friend class MatrixContentTest;
68 friend class MatrixContentSymmetricTest;
69public:
70 MatrixContent(size_t rows, size_t columns);
71 MatrixContent(size_t _rows, size_t _columns, MatrixBaseCase);
72 MatrixContent(size_t rows, size_t columns, const double *src);
73 MatrixContent(gsl_matrix *&src);
74 MatrixContent(const MatrixContent &src);
75 MatrixContent(const MatrixContent *src);
76 virtual ~MatrixContent();
77
78 // Accessing
79 double &at(size_t i, size_t j);
80 const double at(size_t i, size_t j) const;
81 void set(size_t i, size_t j, const double value);
82
83 // Initializing
84 void setFromDoubleArray(double * x);
85 void setIdentity();
86 void setValue(double _value);
87 void setZero();
88
89 // Exchanging elements
90 bool SwapRows(size_t i, size_t j);
91 bool SwapColumns(size_t i, size_t j);
92 bool SwapRowColumn(size_t i, size_t j);
93
94 // Transformations
95 MatrixContent transpose() const;
96 MatrixContent &transpose();
97 gsl_vector* transformToEigenbasis();
98 void sortEigenbasis(gsl_vector *eigenvalues);
99
100 // Properties
101 bool IsNull() const;
102 bool IsPositive() const;
103 bool IsNegative() const;
104 bool IsNonNegative() const;
105 bool IsPositiveDefinite() const;
106 double Determinant() const;
107
108 // Operators
109 MatrixContent &operator=(const MatrixContent &src);
110 const MatrixContent &operator+=(const MatrixContent &rhs);
111 const MatrixContent &operator-=(const MatrixContent &rhs);
112 const MatrixContent &operator*=(const MatrixContent &rhs);
113 const MatrixContent operator*(const MatrixContent &rhs) const;
114 const MatrixContent &operator&=(const MatrixContent &rhs);
115 const MatrixContent operator&(const MatrixContent &rhs) const;
116 const MatrixContent &operator*=(const double factor);
117 bool operator==(const MatrixContent &rhs) const;
118
119 const size_t getRows() const;
120 const size_t getColumns() const;
121
122 VectorContent *getColumnVector(size_t column) const;
123 VectorContent *getRowVector(size_t row) const;
124 VectorContent *getDiagonalVector() const;
125
126protected:
127 double *Pointer(size_t m, size_t n);
128 const double *const_Pointer(size_t m, size_t n) const;
129
130 gsl_matrix * content;
131 const size_t rows; // store for internal purposes
132 const size_t columns; // store for internal purposes
133
134private:
135};
136
137std::ostream & operator<<(std::ostream &ost, const MatrixContent &mat);
138const MatrixContent operator*(const double factor,const MatrixContent& mat);
139const MatrixContent operator*(const MatrixContent &mat,const double factor);
140MatrixContent const operator+(const MatrixContent& a, const MatrixContent& b);
141MatrixContent const operator-(const MatrixContent& a, const MatrixContent& b);
142
143/** Matrix view.
144 * Extension of MatrixContent to contain not a gsl_matrix but only a view on a
145 * gsl_matrix
146 *
147 * We need the above MatrixBaseCase here:
148 * content, i.e. the gsl_matrix, must not be allocated, as it is just a view
149 * with an internal gsl_matrix_view. Hence, MatrixBaseCase is just dummy class
150 * to give the constructor a unique signature.
151 */
152struct MatrixViewContent : public MatrixContent
153{
154 MatrixViewContent(gsl_matrix_view _view) :
155 MatrixContent(_view.matrix.size1, _view.matrix.size2, MatrixBaseCase()),
156 view(_view)
157 {
158 content = &view.matrix;
159 }
160 ~MatrixViewContent(){
161 content=0;
162 }
163 gsl_matrix_view view;
164};
165
166#endif /* MATRIXCONTENT_HPP_ */
Note: See TracBrowser for help on using the repository browser.