LSSTApplications  19.0.0-14-gb0260a2+72efe9b372,20.0.0+7927753e06,20.0.0+8829bf0056,20.0.0+995114c5d2,20.0.0+b6f4b2abd1,20.0.0+bddc4f4cbe,20.0.0-1-g253301a+8829bf0056,20.0.0-1-g2b7511a+0d71a2d77f,20.0.0-1-g5b95a8c+7461dd0434,20.0.0-12-g321c96ea+23efe4bbff,20.0.0-16-gfab17e72e+fdf35455f6,20.0.0-2-g0070d88+ba3ffc8f0b,20.0.0-2-g4dae9ad+ee58a624b3,20.0.0-2-g61b8584+5d3db074ba,20.0.0-2-gb780d76+d529cf1a41,20.0.0-2-ged6426c+226a441f5f,20.0.0-2-gf072044+8829bf0056,20.0.0-2-gf1f7952+ee58a624b3,20.0.0-20-geae50cf+e37fec0aee,20.0.0-25-g3dcad98+544a109665,20.0.0-25-g5eafb0f+ee58a624b3,20.0.0-27-g64178ef+f1f297b00a,20.0.0-3-g4cc78c6+e0676b0dc8,20.0.0-3-g8f21e14+4fd2c12c9a,20.0.0-3-gbd60e8c+187b78b4b8,20.0.0-3-gbecbe05+48431fa087,20.0.0-38-ge4adf513+a12e1f8e37,20.0.0-4-g97dc21a+544a109665,20.0.0-4-gb4befbc+087873070b,20.0.0-4-gf910f65+5d3db074ba,20.0.0-5-gdfe0fee+199202a608,20.0.0-5-gfbfe500+d529cf1a41,20.0.0-6-g64f541c+d529cf1a41,20.0.0-6-g9a5b7a1+a1cd37312e,20.0.0-68-ga3f3dda+5fca18c6a4,20.0.0-9-g4aef684+e18322736b,w.2020.45
LSSTDataManagementBasePackage
Matrix3d.h
Go to the documentation of this file.
1 /*
2  * LSST Data Management System
3  * Copyright 2014-2015 AURA/LSST.
4  *
5  * This product includes software developed by the
6  * LSST Project (http://www.lsst.org/).
7  *
8  * This program is free software: you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation, either version 3 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the LSST License Statement and
19  * the GNU General Public License along with this program. If not,
20  * see <https://www.lsstcorp.org/LegalNotices/>.
21  */
22 
23 #ifndef LSST_SPHGEOM_MATRIX3D_H_
24 #define LSST_SPHGEOM_MATRIX3D_H_
25 
28 
29 #include <iosfwd>
30 
31 #include "Vector3d.h"
32 
33 
34 namespace lsst {
35 namespace sphgeom {
36 
38 class Matrix3d {
39 public:
41  Matrix3d() {}
42 
45  Matrix3d(double m00, double m01, double m02,
46  double m10, double m11, double m12,
47  double m20, double m21, double m22)
48  {
49  _c[0] = Vector3d(m00, m10, m20);
50  _c[1] = Vector3d(m01, m11, m21);
51  _c[2] = Vector3d(m02, m12, m22);
52  }
53 
56  explicit Matrix3d(Vector3d const & v) {
57  _c[0] = Vector3d(v.x(), 0.0, 0.0);
58  _c[1] = Vector3d(0.0, v.y(), 0.0);
59  _c[2] = Vector3d(0.0, 0.0, v.z());
60  }
61 
63  explicit Matrix3d(double s) {
64  _c[0] = Vector3d(s, 0.0, 0.0);
65  _c[1] = Vector3d(0.0, s, 0.0);
66  _c[2] = Vector3d(0.0, 0.0, s);
67  }
68 
69  bool operator==(Matrix3d const & m) const {
70  return _c[0] == m._c[0] &&
71  _c[1] == m._c[1] &&
72  _c[2] == m._c[2];
73  }
74 
75  bool operator!=(Matrix3d const & m) const {
76  return _c[0] != m._c[0] ||
77  _c[1] != m._c[1] ||
78  _c[2] != m._c[2];
79  }
80 
82  Vector3d getRow(int r) const {
83  return Vector3d(getColumn(0)(r), getColumn(1)(r), getColumn(2)(r));
84  }
85 
87  Vector3d const & getColumn(int c) const { return _c[c]; }
88 
91  double operator()(int r, int c) const { return getColumn(c)(r); }
92 
94  double inner(Matrix3d const & m) const {
95  Matrix3d p = cwiseProduct(m);
96  Vector3d sum = p._c[0] + p._c[1] + p._c[2];
97  return sum(0) + sum(1) + sum(2);
98  }
99 
102  double getSquaredNorm() const { return inner(*this); }
103 
105  double getNorm() const { return std::sqrt(getSquaredNorm()); }
106 
109  Vector3d operator*(Vector3d const & v) const {
110  return Vector3d(_c[0] * v(0) + _c[1] * v(1) + _c[2] * v(2));
111  }
112 
115  Matrix3d operator*(Matrix3d const & m) const {
116  Matrix3d r;
117  for (int i = 0; i < 3; ++i) { r._c[i] = this->operator*(m._c[i]); }
118  return r;
119  }
120 
122  Matrix3d operator+(Matrix3d const & m) const {
123  Matrix3d r;
124  for (int i = 0; i < 3; ++i) { r._c[i] = _c[i] + m._c[i]; }
125  return r;
126  }
127 
129  Matrix3d operator-(Matrix3d const & m) const {
130  Matrix3d r;
131  for (int i = 0; i < 3; ++i) { r._c[i] = _c[i] - m._c[i]; }
132  return r;
133  }
134 
136  Matrix3d cwiseProduct(Matrix3d const & m) const {
137  Matrix3d r;
138  for (int i = 0; i < 3; ++i) { r._c[i] = _c[i].cwiseProduct(m._c[i]); }
139  return r;
140  }
141 
143  Matrix3d transpose() const {
144  Matrix3d t;
145  t._c[0] = Vector3d(_c[0].x(), _c[1].x(), _c[2].x());
146  t._c[1] = Vector3d(_c[0].y(), _c[1].y(), _c[2].y());
147  t._c[2] = Vector3d(_c[0].z(), _c[1].z(), _c[2].z());
148  return t;
149  }
150 
152  Matrix3d inverse() const {
153  Matrix3d inv;
154  Matrix3d const & m = *this;
155  // Find the first column of Adj(m), the adjugate matrix of m.
156  Vector3d a0(m(1, 1) * m(2, 2) - m(2, 1) * m(1, 2),
157  m(1, 2) * m(2, 0) - m(2, 2) * m(1, 0),
158  m(1, 0) * m(2, 1) - m(2, 0) * m(1, 1));
159  // Find 1.0/det(m), where the determinant of m is the dot product of
160  // the first row of m with the first column of Adj(m).
161  double rdet = 1.0 / (a0(0) * m(0,0) + a0(1) * m(0,1) + a0(2) * m(0,2));
162  // The inverse of m is Adj(m)/det(m); compute it column by column.
163  inv._c[0] = a0 * rdet;
164  inv._c[1] = Vector3d((m(0, 2) * m(2, 1) - m(2, 2) * m(0, 1)) * rdet,
165  (m(0, 0) * m(2, 2) - m(2, 0) * m(0, 2)) * rdet,
166  (m(0, 1) * m(2, 0) - m(2, 1) * m(0, 0)) * rdet);
167  inv._c[2] = Vector3d((m(0, 1) * m(1, 2) - m(1, 1) * m(0, 2)) * rdet,
168  (m(0, 2) * m(1, 0) - m(1, 2) * m(0, 0)) * rdet,
169  (m(0, 0) * m(1, 1) - m(1, 0) * m(0, 1)) * rdet);
170  return inv;
171  }
172 
173 private:
174  Vector3d _c[3];
175 };
176 
177 std::ostream & operator<<(std::ostream &, Matrix3d const &);
178 
179 }} // namespace lsst::sphgeom
180 
181 #endif // LSST_SPHGEOM_MATRIX3D_H_
y
int y
Definition: SpanSet.cc:49
lsst::sphgeom::Matrix3d::operator-
Matrix3d operator-(Matrix3d const &m) const
The subtraction operator returns the difference between this matrix and m.
Definition: Matrix3d.h:129
lsst::sphgeom::Matrix3d::Matrix3d
Matrix3d(double s)
This constructor returns the identity matrix scaled by s.
Definition: Matrix3d.h:63
lsst::sphgeom::Matrix3d::operator+
Matrix3d operator+(Matrix3d const &m) const
The addition operator returns the sum of this matrix and m.
Definition: Matrix3d.h:122
lsst::sphgeom::Matrix3d::operator==
bool operator==(Matrix3d const &m) const
Definition: Matrix3d.h:69
lsst::sphgeom::Matrix3d::operator!=
bool operator!=(Matrix3d const &m) const
Definition: Matrix3d.h:75
std::sqrt
T sqrt(T... args)
lsst::sphgeom::Matrix3d::operator*
Vector3d operator*(Vector3d const &v) const
The multiplication operator returns the product of this matrix with vector v.
Definition: Matrix3d.h:109
lsst::sphgeom::Vector3d
Vector3d is a vector in ℝ³ with components stored in double precision.
Definition: Vector3d.h:44
lsst::sphgeom::Matrix3d::getSquaredNorm
double getSquaredNorm() const
getSquaredNorm returns the Frobenius inner product of this matrix with itself.
Definition: Matrix3d.h:102
lsst::sphgeom::Vector3d::z
double z() const
Definition: Vector3d.h:70
std::ostream
STL class.
z
double z
Definition: Match.cc:44
x
double x
Definition: ChebyshevBoundedField.cc:277
Vector3d.h
This file declares a class for representing vectors in ℝ³.
lsst::sphgeom::Matrix3d::cwiseProduct
Matrix3d cwiseProduct(Matrix3d const &m) const
cwiseProduct returns the component-wise product of this matrix and m.
Definition: Matrix3d.h:136
lsst::sphgeom::Matrix3d::Matrix3d
Matrix3d(double m00, double m01, double m02, double m10, double m11, double m12, double m20, double m21, double m22)
This constructor creates a matrix from its components, where mij specifies the component for row i an...
Definition: Matrix3d.h:45
lsst::sphgeom::Matrix3d::getColumn
Vector3d const & getColumn(int c) const
getColumn returns the c-th matrix column. Bounds are not checked.
Definition: Matrix3d.h:87
lsst::sphgeom::Matrix3d::Matrix3d
Matrix3d(Vector3d const &v)
This constructor creates a diagonal matrix with diagonal components set to the components of v.
Definition: Matrix3d.h:56
lsst
A base class for image defects.
Definition: imageAlgorithm.dox:1
lsst::sphgeom::Matrix3d::inner
double inner(Matrix3d const &m) const
inner returns the Frobenius inner product of this matrix with m.
Definition: Matrix3d.h:94
lsst::sphgeom::Matrix3d
A 3x3 matrix with real entries stored in double precision.
Definition: Matrix3d.h:38
lsst::sphgeom::Vector3d::y
double y() const
Definition: Vector3d.h:68
lsst::sphgeom::Matrix3d::Matrix3d
Matrix3d()
This constructor creates a zero matrix.
Definition: Matrix3d.h:41
lsst::sphgeom::Matrix3d::operator*
Matrix3d operator*(Matrix3d const &m) const
The multiplication operator returns the product of this matrix with matrix m.
Definition: Matrix3d.h:115
lsst::sphgeom::Vector3d::cwiseProduct
Vector3d cwiseProduct(Vector3d const &v) const
cwiseProduct returns the component-wise product of this vector and v.
Definition: Vector3d.h:150
lsst::sphgeom::Matrix3d::transpose
Matrix3d transpose() const
transpose returns the transpose of this matrix.
Definition: Matrix3d.h:143
lsst::sphgeom::operator<<
std::ostream & operator<<(std::ostream &, Angle const &)
Definition: Angle.cc:34
lsst::sphgeom::Matrix3d::operator()
double operator()(int r, int c) const
The function call operator returns the scalar at row r and column c.
Definition: Matrix3d.h:91
lsst::sphgeom::Matrix3d::inverse
Matrix3d inverse() const
inverse returns the inverse of this matrix.
Definition: Matrix3d.h:152
lsst::sphgeom::Matrix3d::getNorm
double getNorm() const
getNorm returns the L2 (Frobenius) norm of this matrix.
Definition: Matrix3d.h:105
lsst::sphgeom::Vector3d::x
double x() const
Definition: Vector3d.h:66
lsst::sphgeom::Matrix3d::getRow
Vector3d getRow(int r) const
getRow returns the r-th matrix row. Bounds are not checked.
Definition: Matrix3d.h:82
m
int m
Definition: SpanSet.cc:49