VCCC  2024.05
VisualCamp Common C++ library
matrix_inv.hpp
Go to the documentation of this file.
1 # /*
2 # * Created by YongGyu Lee on 2020/02/06.
3 # */
4 #
5 # ifndef VCCC_MATH_MATRIX_MATRIX_INV_HPP
6 # define VCCC_MATH_MATRIX_MATRIX_INV_HPP
7 #
9 
10 namespace vccc {
11 
12 template<typename E>
14  const E& e;
15  public:
16  MatrixInverter(const E& e) : e(e) {
17  static_assert(E::cols == E::rows, "Cannot invert non-square matrix");
18  }
19 
20 };
21 
22 }
23 
24 # endif // VCCC_MATH_MATRIX_MATRIX_INV_HPP
Definition: matrix_inv.hpp:13
MatrixInverter(const E &e)
Definition: matrix_inv.hpp:16
Definition: directory.h:12