8#ifndef EIGENCONVERSIONS_TPP
9#define EIGENCONVERSIONS_TPP
24 template <
typename type>
34 if (
slice.size() != dimensions.size())
44 for (
size_t i = 0;
i <
slice.size(); ++
i)
98template <
typename type>
103 return Eigen::Map<Eigen::Matrix<type, Eigen::Dynamic, Eigen::Dynamic>>(input.
data(), input.
dimensions()(0), input.
dimensions()(1));
106template <
typename type>
111 return Eigen::Map<const Eigen::Matrix<type, Eigen::Dynamic, Eigen::Dynamic>>(input.
data(), input.
dimensions()(0), input.
dimensions()(1));
114template <
typename type>
120 Eigen::Stride<Eigen::Dynamic, Eigen::Dynamic> stride(slicingInfo.outerStride, slicingInfo.innerStride);
121 if (!slicingInfo.valid)
128template <
typename type>
134 Eigen::Stride<Eigen::Dynamic, Eigen::Dynamic> stride(slicingInfo.outerStride, slicingInfo.innerStride);
137 if (!slicingInfo.valid)
139 return ConstEigenMapWithStride<type>(
nullptr, 0, 0, stride);
142 return ConstEigenMapWithStride<type>(input.
data() + slicingInfo.offset, slicingInfo.dimensions.first, slicingInfo.dimensions.second, stride);
145template <
typename type>
149 return Eigen::Map<Eigen::Matrix<type, Eigen::Dynamic, 1>>(input.
data(), input.size());
152template <
typename type>
156 return Eigen::Map<const Eigen::Matrix<type, Eigen::Dynamic, 1>>(input.
data(), input.size());
159template <
typename EigenDerived,
typename>
MultiDimensionalArray is a particular type of Variable specialized for multidimensional arrays of a g...
pointer data()
Direct access to the underlying array.
size_t index_type
Defines how to allocate T.
index_type rawIndexFromIndices(const std::vector< index_type > &el) const
Get the index in the vectorized array corresponding to the provided indices.
matioCpp::Span< const size_t > dimensions() const
Get the dimensions of this object.
bool isValid() const
Check if the variable is valid.
SlicingInfo computeSlicingInfo(const matioCpp::MultiDimensionalArray< type > &input, const std::vector< int > &slice)
matioCpp::Vector< typename std::remove_cv_t< typename matioCpp::SpanUtils::container_data< Vector >::type > > make_variable(const std::string &name, const Vector &input)
Conversion from a generic vector to a matioCpp::Vector.
std::pair< size_t, size_t > dimensions