1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256
|
/*
//
// Copyright 1997-2009 Torsten Rohlfing
//
// Copyright 2004-2012, 2014 SRI International
//
// This file is part of the Computational Morphometry Toolkit.
//
// http://www.nitrc.org/projects/cmtk/
//
// The Computational Morphometry Toolkit is free software: you can
// redistribute it and/or modify it under the terms of the GNU General Public
// License as published by the Free Software Foundation, either version 3 of
// the License, or (at your option) any later version.
//
// The Computational Morphometry Toolkit is distributed in the hope that it
// will be useful, but WITHOUT ANY WARRANTY; without even the implied
// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License along
// with the Computational Morphometry Toolkit. If not, see
// <http://www.gnu.org/licenses/>.
//
// $Revision: 5436 $
//
// $LastChangedDate: 2018-12-10 19:01:20 -0800 (Mon, 10 Dec 2018) $
//
// $LastChangedBy: torstenrohlfing $
//
*/
#ifndef __cmtkFixedSquareMatrix_h_included_
#define __cmtkFixedSquareMatrix_h_included_
#include <cmtkconfig.h>
#include <Base/cmtkTypes.h>
#include <Base/cmtkFixedVector.h>
#include <System/cmtkConsole.h>
#include <System/cmtkException.h>
namespace
cmtk
{
/** \addtogroup Base */
//@{
/// Fixed-size rank-2 matrix.
template<size_t NDIM,class TSCALAR=Types::Coordinate>
class FixedSquareMatrix
{
public:
/// This class.
typedef FixedSquareMatrix<NDIM,TSCALAR> Self;
/// The scalar data type.
typedef TSCALAR ScalarType;
/// The matrix dimension.
static const size_t Dimension = NDIM;
protected:
/** Default constructor.
*\attention This creates an uninitialized matrix.
*/
FixedSquareMatrix() {}
public:
/** Construc matrix and set all elements to given constant value.
*/
FixedSquareMatrix( const typename Self::ScalarType& value );
/// Copy and submatrix constructor.
template<size_t N2,class T2> FixedSquareMatrix( const FixedSquareMatrix<N2,T2>& other /*!< Source matrix object */,
const size_t iOfs = 0 /*!< Sub-matrix offset in i index */, const size_t jOfs = 0 /*!< Sub-matrix offset in i index */ );
/** Array constructor.
* If a NULL parameter is given, an uninitialized matrix is generated. This
* is intended behaviour.
*/
FixedSquareMatrix( const typename Self::ScalarType *const values )
{
if ( values )
this->Set( values );
}
/// 2D array constructor.
template<class T2>
FixedSquareMatrix( const T2 (&matrix)[NDIM][NDIM] )
{
for ( size_t j = 0; j < NDIM; ++j )
for ( size_t i = 0; i < NDIM; ++i )
this->m_Matrix[j][i] = matrix[j][i];
}
/// Set from array of entries.
Self& Set( const typename Self::ScalarType *const values );
/// Set to constant value.
Self& Fill( const typename Self::ScalarType& value );
/// Get multiplicative identity matrix.
static const Self& Identity();
/// Get all-zero matrix.
static const Self& Zero();
/// Exception thrown when trying to invert singular matrix.
class SingularMatrixException : public Exception {};
/// Get inverse matrix.
Self GetInverse() const;
/// Get transpose matrix.
Self GetTranspose() const;
/// Index operator.
typename Self::ScalarType* operator[]( const size_t i )
{
return this->m_Matrix[i];
}
/// Constant index operator.
const typename Self::ScalarType* operator[]( const size_t i ) const
{
return this->m_Matrix[i];
}
/// In-place multiplication operator.
Self& operator*=( const Self& other );
/// In-place scalar multiplication operator.
Self& operator*=( const typename Self::ScalarType& scalar );
/// Multiplication operator.
const Self operator*( const Self& other ) const;
/// Assignment operator.
Self& operator=( const Self& other );
/// Addition operator.
Self& operator+=( const Self& other );
/// Subtraction operator.
Self& operator-=( const Self& other );
/// Get Frobenius norm.
typename Self::ScalarType FrobeniusNorm() const;
/// Get column vector.
FixedVector<NDIM,TSCALAR> GetColumnVector( const size_t i ) const
{
FixedVector<NDIM,TSCALAR> v;
for ( size_t j = 0; j<NDIM; ++j )
{
v[j] = this->m_Matrix[j][i];
}
return v;
}
/// Get row vector.
FixedVector<NDIM,TSCALAR> GetRowVector( const size_t j ) const
{
FixedVector<NDIM,TSCALAR> v;
for ( size_t i = 0; i<NDIM; ++i )
{
v[i] = this->m_Matrix[j][i];
}
return v;
}
protected:
/// The actual matrix.
typename Self::ScalarType m_Matrix[NDIM][NDIM];
template<size_t N,class TYPE> friend FixedSquareMatrix<N,TYPE> operator+( const FixedSquareMatrix<N,TYPE>&, const FixedSquareMatrix<N,TYPE>& );
template<size_t N,class TYPE> friend FixedSquareMatrix<N,TYPE> operator-( const FixedSquareMatrix<N,TYPE>&, const FixedSquareMatrix<N,TYPE>& );
};
/// In-place vector-matrix multiplication operation.
template<size_t NDIM,class T>
FixedVector<NDIM,T>&
operator*=( FixedVector<NDIM,T>& u, const FixedSquareMatrix<NDIM,T>& M )
{
FixedVector<NDIM,T> v;
for ( size_t i = 0; i<NDIM; ++i )
{
v[i] = u[0]*M[0][i];
for ( size_t j = 1; j<NDIM; ++j )
{
v[i] += u[j]*M[j][i];
}
}
return u = v;
}
/// Multiplication with vector operator.
template<size_t NDIM,class T>
FixedVector<NDIM,T>
operator*( FixedVector<NDIM,T> u, const FixedSquareMatrix<NDIM,T>& M )
{
return u *= M;
}
/// In-place homogeneous multiplication with vector operation.
template<size_t NDIM,class T>
FixedVector<NDIM,T>&
operator*=( FixedVector<NDIM,T>& u, const FixedSquareMatrix<NDIM+1,T>& M )
{
FixedVector<NDIM,T> v;
for ( size_t i = 0; i<NDIM; ++i )
{
v[i] = u[0]*M[0][i];
for ( size_t j = 1; j<NDIM; ++j )
{
v[i] += u[j]*M[j][i];
}
// add 1x last column element for implicitly homogeneous vector.
v[i] += M[NDIM][i];
}
return u = v;
}
/// Multiplication with homogeneous vector operator.
template<size_t NDIM,class T>
FixedVector<NDIM,T>
operator*( FixedVector<NDIM,T> u, const FixedSquareMatrix<NDIM+1,T>& M )
{
return u *= M;
}
/// Output object to console.
template<size_t NDIM,class TSCALAR>
inline
Console& operator<< ( Console& stream, const FixedSquareMatrix<NDIM,TSCALAR>& m )
{
stream << NDIM << "x" << NDIM << " Matrix:\n";
for ( int i = 0; i < NDIM; ++i )
{
for ( int j = 0; j < NDIM; ++j )
stream << m[i][j] << "\t";
stream << "\n";
}
return stream;
}
//@}
} // namespace cmtk
#include "cmtkFixedSquareMatrix.txx"
#endif // #ifndef __cmtkFixedSquareMatrix_h_included_
|