12#include <initializer_list>
21#include <dune/common/matrixconcepts.hh>
30 class ColumnVectorView
34 using value_type =
typename M::value_type;
35 using size_type =
typename M::size_type;
37 constexpr ColumnVectorView(M& matrix, size_type col) :
42 constexpr size_type N ()
const {
46 template<
class M_ = M,
47 std::enable_if_t<std::is_same_v<M_,M> and not std::is_const_v<M_>,
int> = 0>
48 constexpr value_type& operator[] (size_type row) {
49 return matrix_[row][col_];
52 constexpr const value_type& operator[] (size_type row)
const {
53 return matrix_[row][col_];
64 struct FieldTraits< Impl::ColumnVectorView<M> >
66 using field_type =
typename FieldTraits<M>::field_type;
67 using real_type =
typename FieldTraits<M>::real_type;
81 template<
class K,
int ROWS,
int COLS = ROWS >
class FieldMatrix;
84 template<
class K,
int ROWS,
int COLS >
85 struct DenseMatVecTraits< FieldMatrix<K,ROWS,COLS> >
87 typedef FieldMatrix<K,ROWS,COLS> derived_type;
90 typedef FieldVector<K,COLS> row_type;
92 typedef row_type &row_reference;
93 typedef const row_type &const_row_reference;
95 typedef std::array<row_type,ROWS> container_type;
97 typedef typename container_type::size_type size_type;
100 template<
class K,
int ROWS,
int COLS >
101 struct FieldTraits< FieldMatrix<K,ROWS,COLS> >
103 typedef typename FieldTraits<K>::field_type field_type;
104 typedef typename FieldTraits<K>::real_type real_type;
115 template<
class K,
int ROWS,
int COLS>
118 std::array< FieldVector<K,COLS>, ROWS > _data;
123 constexpr static int rows = ROWS;
125 constexpr static int cols = COLS;
141 assert(l.size() ==
rows);
142 for(std::size_t i=0; i<std::min<std::size_t>(ROWS, l.size()); ++i)
143 _data[i] = std::data(l)[i];
151 typename = std::enable_if_t<HasDenseMatrixAssigner<FieldMatrix, T>::value>>
157 using Base::operator=;
171 template <
typename T,
int rows,
int cols>
178 for(
int i = 0; i < ROWS; ++i )
179 for(
int j = 0; j < COLS; ++j )
180 AT[j][i] = (*
this)[i][j];
185 template <
class OtherScalar>
191 for (size_type i = 0; i < ROWS; ++i)
192 for (size_type j = 0; j < COLS; ++j)
193 result[i][j] = matrixA[i][j] + matrixB[i][j];
199 template <
class OtherScalar>
205 for (size_type i = 0; i < ROWS; ++i)
206 for (size_type j = 0; j < COLS; ++j)
207 result[i][j] = matrixA[i][j] - matrixB[i][j];
214 std::enable_if_t<IsNumber<Scalar>::value,
int> = 0>
219 for (size_type i = 0; i < ROWS; ++i)
220 for (size_type j = 0; j < COLS; ++j)
221 result[i][j] = matrix[i][j] * scalar;
228 std::enable_if_t<IsNumber<Scalar>::value,
int> = 0>
233 for (size_type i = 0; i < ROWS; ++i)
234 for (size_type j = 0; j < COLS; ++j)
235 result[i][j] = scalar * matrix[i][j];
242 std::enable_if_t<IsNumber<Scalar>::value,
int> = 0>
247 for (size_type i = 0; i < ROWS; ++i)
248 for (size_type j = 0; j < COLS; ++j)
249 result[i][j] = matrix[i][j] / scalar;
256 template <
class OtherScalar,
int otherCols>
262 for (size_type i = 0; i < matrixA.mat_rows(); ++i)
263 for (size_type j = 0; j < matrixB.mat_cols(); ++j)
266 for (size_type k = 0; k < matrixA.mat_cols(); ++k)
267 result[i][j] += matrixA[i][k] * matrixB[k][j];
279 template <
class OtherMatrix, std::enable_if_t<
280 Impl::IsStaticSizeMatrix_v<OtherMatrix>
281 and not Impl::IsFieldMatrix_v<OtherMatrix>
284 const OtherMatrix& matrixB)
286 using Field =
typename PromotionTraits<K, typename OtherMatrix::field_type>::PromotedType;
288 for (std::size_t j=0; j<
rows; ++j)
289 matrixB.
mtv(matrixA[j], result[j]);
299 template <
class OtherMatrix, std::enable_if_t<
300 Impl::IsStaticSizeMatrix_v<OtherMatrix>
301 and not Impl::IsFieldMatrix_v<OtherMatrix>
306 using Field =
typename PromotionTraits<K, typename OtherMatrix::field_type>::PromotedType;
308 for (std::size_t j=0; j<
cols; ++j)
310 auto B_j = Impl::ColumnVectorView(matrixB, j);
311 auto result_j = Impl::ColumnVectorView(result, j);
312 matrixA.mv(B_j, result_j);
323 for (size_type i=0; i<l; i++) {
324 for (size_type j=0; j<
cols; j++) {
326 for (size_type k=0; k<
rows; k++)
327 C[i][j] +=
M[i][k]*(*
this)[k][j];
336 template <
int r,
int c>
339 static_assert(r == c,
"Cannot rightmultiply with non-square matrix");
340 static_assert(r ==
cols,
"Size mismatch");
343 for (size_type i=0; i<
rows; i++)
344 for (size_type j=0; j<
cols; j++) {
346 for (size_type k=0; k<
cols; k++)
347 (*
this)[i][j] += C[i][k]*
M[k][j];
358 for (size_type i=0; i<
rows; i++) {
359 for (size_type j=0; j<l; j++) {
361 for (size_type k=0; k<
cols; k++)
362 C[i][j] += (*
this)[i][k]*
M[k][j];
369 static constexpr size_type mat_rows() {
return ROWS; }
370 static constexpr size_type mat_cols() {
return COLS; }
372 row_reference mat_access ( size_type i )
378 const_row_reference mat_access ( size_type i )
const
389 class FieldMatrix<K,1,1> :
public DenseMatrix< FieldMatrix<K,1,1> >
391 FieldVector<K,1> _data;
392 typedef DenseMatrix< FieldMatrix<K,1,1> > Base;
412 constexpr static int rows = 1;
415 constexpr static int cols = 1;
426 std::copy_n(l.begin(), std::min<std::size_t>(1, l.size()), &_data);
430 typename = std::enable_if_t<HasDenseMatrixAssigner<FieldMatrix, T>::value>>
436 using Base::operator=;
445 template <
class OtherScalar>
447 const FieldMatrix<OtherScalar,1,1>& matrixB)
449 return FieldMatrix<typename PromotionTraits<K,OtherScalar>::PromotedType,1,1>{matrixA[0][0] + matrixB[0][0]};
454 std::enable_if_t<IsNumber<Scalar>::value,
int> = 0>
458 return FieldMatrix<typename PromotionTraits<K,Scalar>::PromotedType,1,1>{matrix[0][0] + scalar};
463 std::enable_if_t<IsNumber<Scalar>::value,
int> = 0>
467 return FieldMatrix<typename PromotionTraits<Scalar,K>::PromotedType,1,1>{scalar + matrix[0][0]};
471 template <
class OtherScalar>
473 const FieldMatrix<OtherScalar,1,1>& matrixB)
475 return FieldMatrix<typename PromotionTraits<K,OtherScalar>::PromotedType,1,1>{matrixA[0][0] - matrixB[0][0]};
480 std::enable_if_t<IsNumber<Scalar>::value,
int> = 0>
484 return FieldMatrix<typename PromotionTraits<K,Scalar>::PromotedType,1,1>{matrix[0][0] - scalar};
489 std::enable_if_t<IsNumber<Scalar>::value,
int> = 0>
493 return FieldMatrix<typename PromotionTraits<Scalar,K>::PromotedType,1,1>{scalar - matrix[0][0]};
498 std::enable_if_t<IsNumber<Scalar>::value,
int> = 0>
501 return FieldMatrix<typename PromotionTraits<K,Scalar>::PromotedType,1,1> {matrix[0][0] * scalar};
506 std::enable_if_t<IsNumber<Scalar>::value,
int> = 0>
509 return FieldMatrix<typename PromotionTraits<K,Scalar>::PromotedType,1,1> {scalar * matrix[0][0]};
514 std::enable_if_t<IsNumber<Scalar>::value,
int> = 0>
517 return FieldMatrix<typename PromotionTraits<K,Scalar>::PromotedType,1,1> {matrix[0][0] / scalar};
524 template <
class OtherScalar,
int otherCols>
526 const FieldMatrix<OtherScalar, 1, otherCols>& matrixB)
528 FieldMatrix<typename PromotionTraits<K,OtherScalar>::PromotedType,1,otherCols> result;
530 for (size_type j = 0; j < matrixB.mat_cols(); ++j)
531 result[0][j] = matrixA[0][0] * matrixB[0][j];
542 template <
class OtherMatrix, std::enable_if_t<
543 Impl::IsStaticSizeMatrix_v<OtherMatrix>
544 and not Impl::IsFieldMatrix_v<OtherMatrix>
545 and (OtherMatrix::rows==1)
548 const OtherMatrix& matrixB)
550 using Field =
typename PromotionTraits<K, typename OtherMatrix::field_type>::PromotedType;
552 for (std::size_t j=0; j<
rows; ++j)
553 matrixB.
mtv(matrixA[j], result[j]);
563 template <
class OtherMatrix, std::enable_if_t<
564 Impl::IsStaticSizeMatrix_v<OtherMatrix>
565 and not Impl::IsFieldMatrix_v<OtherMatrix>
566 and (OtherMatrix::cols==1)
568 friend auto operator* (
const OtherMatrix& matrixA,
571 using Field =
typename PromotionTraits<K, typename OtherMatrix::field_type>::PromotedType;
573 for (std::size_t j=0; j<
cols; ++j)
575 auto B_j = Impl::ColumnVectorView(matrixB, j);
576 auto result_j = Impl::ColumnVectorView(result, j);
577 matrixA.mv(B_j, result_j);
586 FieldMatrix<K,l,1> C;
587 for (size_type j=0; j<l; j++)
588 C[j][0] =
M[j][0]*(*
this)[0][0];
603 FieldMatrix<K,1,l> C;
605 for (size_type j=0; j<l; j++)
606 C[0][j] =
M[0][j]*_data[0];
611 static constexpr size_type mat_rows() {
return 1; }
612 static constexpr size_type mat_cols() {
return 1; }
614 row_reference mat_access ([[maybe_unused]] size_type i)
620 const_row_reference mat_access ([[maybe_unused]] size_type i)
const
656 operator const K& ()
const {
return _data[0]; }
662 std::ostream& operator<< (std::ostream& s,
const FieldMatrix<K,1,1>& a)
670 namespace FMatrixHelp {
673 template <
typename K>
676 using real_type =
typename FieldTraits<K>::real_type;
677 inverse[0][0] = real_type(1.0)/matrix[0][0];
682 template <
typename K>
690 template <
typename K>
693 using real_type =
typename FieldTraits<K>::real_type;
695 K det = (matrix[0][0]*matrix[1][1] - matrix[0][1]*matrix[1][0]);
696 K det_1 = real_type(1.0)/det;
697 inverse[0][0] = matrix[1][1] * det_1;
698 inverse[0][1] = - matrix[0][1] * det_1;
699 inverse[1][0] = - matrix[1][0] * det_1;
700 inverse[1][1] = matrix[0][0] * det_1;
706 template <
typename K>
709 using real_type =
typename FieldTraits<K>::real_type;
711 K det = (matrix[0][0]*matrix[1][1] - matrix[0][1]*matrix[1][0]);
712 K det_1 = real_type(1.0)/det;
713 inverse[0][0] = matrix[1][1] * det_1;
714 inverse[1][0] = - matrix[0][1] * det_1;
715 inverse[0][1] = - matrix[1][0] * det_1;
716 inverse[1][1] = matrix[0][0] * det_1;
721 template <
typename K>
724 using real_type =
typename FieldTraits<K>::real_type;
726 K t4 = matrix[0][0] * matrix[1][1];
727 K t6 = matrix[0][0] * matrix[1][2];
728 K t8 = matrix[0][1] * matrix[1][0];
729 K t10 = matrix[0][2] * matrix[1][0];
730 K t12 = matrix[0][1] * matrix[2][0];
731 K t14 = matrix[0][2] * matrix[2][0];
733 K det = (t4*matrix[2][2]-t6*matrix[2][1]-t8*matrix[2][2]+
734 t10*matrix[2][1]+t12*matrix[1][2]-t14*matrix[1][1]);
735 K t17 = real_type(1.0)/det;
737 inverse[0][0] = (matrix[1][1] * matrix[2][2] - matrix[1][2] * matrix[2][1])*t17;
738 inverse[0][1] = -(matrix[0][1] * matrix[2][2] - matrix[0][2] * matrix[2][1])*t17;
739 inverse[0][2] = (matrix[0][1] * matrix[1][2] - matrix[0][2] * matrix[1][1])*t17;
740 inverse[1][0] = -(matrix[1][0] * matrix[2][2] - matrix[1][2] * matrix[2][0])*t17;
741 inverse[1][1] = (matrix[0][0] * matrix[2][2] - t14) * t17;
742 inverse[1][2] = -(t6-t10) * t17;
743 inverse[2][0] = (matrix[1][0] * matrix[2][1] - matrix[1][1] * matrix[2][0]) * t17;
744 inverse[2][1] = -(matrix[0][0] * matrix[2][1] - t12) * t17;
745 inverse[2][2] = (t4-t8) * t17;
751 template <
typename K>
754 using real_type =
typename FieldTraits<K>::real_type;
756 K t4 = matrix[0][0] * matrix[1][1];
757 K t6 = matrix[0][0] * matrix[1][2];
758 K t8 = matrix[0][1] * matrix[1][0];
759 K t10 = matrix[0][2] * matrix[1][0];
760 K t12 = matrix[0][1] * matrix[2][0];
761 K t14 = matrix[0][2] * matrix[2][0];
763 K det = (t4*matrix[2][2]-t6*matrix[2][1]-t8*matrix[2][2]+
764 t10*matrix[2][1]+t12*matrix[1][2]-t14*matrix[1][1]);
765 K t17 = real_type(1.0)/det;
767 inverse[0][0] = (matrix[1][1] * matrix[2][2] - matrix[1][2] * matrix[2][1])*t17;
768 inverse[1][0] = -(matrix[0][1] * matrix[2][2] - matrix[0][2] * matrix[2][1])*t17;
769 inverse[2][0] = (matrix[0][1] * matrix[1][2] - matrix[0][2] * matrix[1][1])*t17;
770 inverse[0][1] = -(matrix[1][0] * matrix[2][2] - matrix[1][2] * matrix[2][0])*t17;
771 inverse[1][1] = (matrix[0][0] * matrix[2][2] - t14) * t17;
772 inverse[2][1] = -(t6-t10) * t17;
773 inverse[0][2] = (matrix[1][0] * matrix[2][1] - matrix[1][1] * matrix[2][0]) * t17;
774 inverse[1][2] = -(matrix[0][0] * matrix[2][1] - t12) * t17;
775 inverse[2][2] = (t4-t8) * t17;
781 template<
class K,
int m,
int n,
int p >
788 for( size_type i = 0; i < m; ++i )
790 for( size_type j = 0; j < p; ++j )
792 ret[ i ][ j ] = K( 0 );
793 for( size_type k = 0; k < n; ++k )
794 ret[ i ][ j ] += A[ i ][ k ] * B[ k ][ j ];
800 template <
typename K,
int rows,
int cols>
803 typedef typename FieldMatrix<K,rows,cols>::size_type size_type;
805 for(size_type i=0; i<cols; i++)
806 for(size_type j=0; j<cols; j++)
809 for(size_type k=0; k<rows; k++)
810 ret[i][j]+=matrix[k][i]*matrix[k][j];
814 using Dune::DenseMatrixHelp::multAssign;
817 template <
typename K,
int rows,
int cols>
820 typedef typename FieldMatrix<K,rows,cols>::size_type size_type;
822 for(size_type i=0; i<cols; ++i)
825 for(size_type j=0; j<rows; ++j)
826 ret[i] += matrix[j][i]*x[j];
831 template <
typename K,
int rows,
int cols>
835 multAssign(matrix,x,ret);
840 template <
typename K,
int rows,
int cols>
Macro for wrapping boundary checks.
A dense n x m matrix.
Definition: densematrix.hh:140
derived_type operator-() const
Matrix negation.
Definition: densematrix.hh:298
void mtv(const X &x, Y &y) const
y = A^T x
Definition: densematrix.hh:387
constexpr size_type M() const
number of columns
Definition: densematrix.hh:703
FieldMatrix< K, ROWS, COLS > & rightmultiply(const DenseMatrix< M2 > &M)
Multiplies M from the right to this matrix.
Definition: densematrix.hh:645
derived_type & operator/=(const field_type &k)
vector space division by scalar
Definition: densematrix.hh:329
derived_type & operator*=(const field_type &k)
vector space multiplication with scalar
Definition: densematrix.hh:321
derived_type & operator-=(const DenseMatrix< Other > &x)
vector space subtraction
Definition: densematrix.hh:312
static constexpr int blocklevel
The number of block levels we contain. This is the leaf, that is, 1.
Definition: densematrix.hh:178
Traits::row_type row_type
The type used to represent a row (must fulfill the Dune::DenseVector interface)
Definition: densematrix.hh:169
Traits::size_type size_type
The type used for the index access and size operation.
Definition: densematrix.hh:166
Traits::const_row_reference const_row_reference
The type used to represent a reference to a constant row (usually const row_type &)
Definition: densematrix.hh:175
Traits::row_reference row_reference
The type used to represent a reference to a row (usually row_type &)
Definition: densematrix.hh:172
derived_type & operator+=(const DenseMatrix< Other > &x)
vector space addition
Definition: densematrix.hh:289
A dense n x m matrix.
Definition: fmatrix.hh:117
constexpr FieldMatrix()=default
Default constructor.
FieldMatrix & operator=(const FieldMatrix< T, ROWS, COLS > &x)
copy assignment from FieldMatrix over a different field
Definition: fmatrix.hh:164
FieldMatrix< K, rows, l > rightmultiplyany(const FieldMatrix< K, cols, l > &M) const
Multiplies M from the right to this matrix, this matrix is not modified.
Definition: fmatrix.hh:354
FieldMatrix< K, l, cols > leftmultiplyany(const FieldMatrix< K, l, rows > &M) const
Multiplies M from the left to this matrix, this matrix is not modified.
Definition: fmatrix.hh:319
FieldMatrix & rightmultiply(const FieldMatrix< K, r, c > &M)
Multiplies M from the right to this matrix.
Definition: fmatrix.hh:337
FieldMatrix(T const &rhs)
copy constructor from assignable type T
Definition: fmatrix.hh:152
friend auto operator*(const FieldMatrix &matrix, Scalar scalar)
vector space multiplication with scalar
Definition: fmatrix.hh:215
FieldMatrix & operator=(FieldMatrix< T, rows, cols > const &)=delete
no copy assignment from FieldMatrix of different size
constexpr FieldMatrix(std::initializer_list< Dune::FieldVector< K, cols > > const &l)
Constructor initializing the matrix from a list of vector.
Definition: fmatrix.hh:140
static constexpr int rows
The number of rows.
Definition: fmatrix.hh:123
FieldMatrix< K, COLS, ROWS > transposed() const
Return transposed of the matrix as FieldMatrix.
Definition: fmatrix.hh:175
static constexpr int cols
The number of columns.
Definition: fmatrix.hh:125
friend auto operator/(const FieldMatrix &matrix, Scalar scalar)
vector space division by scalar
Definition: fmatrix.hh:243
friend auto operator+(const FieldMatrix &matrixA, const FieldMatrix< OtherScalar, ROWS, COLS > &matrixB)
vector space addition – two-argument version
Definition: fmatrix.hh:186
FieldMatrix & operator=(const FieldMatrix &)=default
copy assignment operator
FieldMatrix(const FieldMatrix &)=default
copy constructor
Implements a matrix constructed from a given type representing a field and a compile-time given numbe...
A few common exception classes.
static FieldVector< K, cols > multTransposed(const FieldMatrix< K, rows, cols > &matrix, const FieldVector< K, rows > &x)
calculates ret = matrix^T * x
Definition: fmatrix.hh:841
static K invertMatrix_retTransposed(const FieldMatrix< K, 1, 1 > &matrix, FieldMatrix< K, 1, 1 > &inverse)
invert scalar without changing the original matrix
Definition: fmatrix.hh:683
static void multMatrix(const FieldMatrix< K, m, n > &A, const FieldMatrix< K, n, p > &B, FieldMatrix< K, m, p > &ret)
calculates ret = A * B
Definition: fmatrix.hh:782
static K invertMatrix(const FieldMatrix< K, 1, 1 > &matrix, FieldMatrix< K, 1, 1 > &inverse)
invert scalar without changing the original matrix
Definition: fmatrix.hh:674
static FieldVector< K, rows > mult(const FieldMatrix< K, rows, cols > &matrix, const FieldVector< K, cols > &x)
calculates ret = matrix * x
Definition: fmatrix.hh:832
static void multTransposedMatrix(const FieldMatrix< K, rows, cols > &matrix, FieldMatrix< K, cols, cols > &ret)
calculates ret= A_t*A
Definition: fmatrix.hh:801
static void multAssignTransposed(const FieldMatrix< K, rows, cols > &matrix, const FieldVector< K, rows > &x, FieldVector< K, cols > &ret)
calculates ret = matrix^T * x
Definition: fmatrix.hh:818
Eigenvalue computations for the FieldMatrix class.
Implements a vector constructed from a given type representing a field and a compile-time given size.
#define DUNE_ASSERT_BOUNDS(cond)
If DUNE_CHECK_BOUNDS is defined: check if condition cond holds; otherwise, do nothing.
Definition: boundschecking.hh:30
typename Overloads::ScalarType< std::decay_t< V > >::type Scalar
Element type of some SIMD type.
Definition: interface.hh:235
Dune namespace.
Definition: alignedallocator.hh:13
Various precision settings for calculations with FieldMatrix and FieldVector.
Traits for type conversions and type information.