Skip to content
Snippets Groups Projects
Commit ba471593 authored by patavirt's avatar patavirt
Browse files

array: eigen conversion to fixed size

parent a8a57e1c
No related branches found
No related tags found
No related merge requests found
...@@ -160,6 +160,22 @@ public: ...@@ -160,6 +160,22 @@ public:
{static_cast<Eigen::Index>(stride_[1]), static_cast<Eigen::Index>(stride_[0])}}; {static_cast<Eigen::Index>(stride_[1]), static_cast<Eigen::Index>(stride_[0])}};
} }
template <size_t Rows, size_t Cols>
Eigen::Map< Eigen::Matrix<Scalar,Rows,Cols,Eigen::RowMajor> > to_fixed_matrix() const
{
static_assert(NDim == 2, "matrix must be two-dimensional");
#ifndef NO_BOUNDS_CHECK
if (shape_[0] != Rows || shape_[1] != Cols)
throw std::out_of_range("incorrect shape");
if (stride_[0] != shape_[1] || stride_[1] != 1)
throw std::out_of_range("data not in row major order");
#endif
return {(Scalar *)data_.data() + offset_,
static_cast<Eigen::Index>(shape_[0]), static_cast<Eigen::Index>(shape_[1])};
}
operator EigenMap() const { return to_matrix(); } operator EigenMap() const { return to_matrix(); }
}; };
......
...@@ -23,7 +23,7 @@ int main() ...@@ -23,7 +23,7 @@ int main()
{ {
std::vector<ADComplex> v(2*2*2); std::vector<ADComplex> v(2*2*2);
Array<ADComplex,3> Q0(v,{2,2,2},true); Array<ADComplex,3> Q0(v,{2,2,2},true);
auto Q = Q0.slice<0>(1); auto Q = Q0.slice<0>(0);
std::cout << Q0.index(1u,0u,0u) << std::endl; std::cout << Q0.index(1u,0u,0u) << std::endl;
...@@ -31,9 +31,10 @@ int main() ...@@ -31,9 +31,10 @@ int main()
std::cout << Q.index(0u,0u) << std::endl; std::cout << Q.index(0u,0u) << std::endl;
auto mat = Q.to_matrix(); //auto mat = Q.to_matrix();
auto mat = Q.to_fixed_matrix<2,2>();
mat = mat * mat; mat = mat * mat * mat;
dump(Q0); dump(Q0);
std::cout << mat << std::endl; std::cout << mat << std::endl;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment