matio-cpp v0.3.0
A C++ wrapper of the matio library, with memory ownership handling, to read and write .mat files.
Loading...
Searching...
No Matches
EigenConversions.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 2022 Fondazione Istituto Italiano di Tecnologia
3 *
4 * This software may be modified and distributed under the terms of the
5 * BSD-2-Clause license (https://opensource.org/licenses/BSD-2-Clause).
6 */
7
8#ifndef MATIOCPP_EIGENCONVERSIONS_H
9#define MATIOCPP_EIGENCONVERSIONS_H
10
12
13#ifdef MATIOCPP_HAS_EIGEN
14
15#include <matioCpp/Vector.h>
17
18#include <Eigen/Core>
19
20namespace matioCpp
21{
22
23template <typename type>
24using EigenMapWithStride = Eigen::Map<Eigen::Matrix<type, Eigen::Dynamic, Eigen::Dynamic>, 0, Eigen::Stride<Eigen::Dynamic, Eigen::Dynamic>>;
25
26template <typename type>
27using ConstEigenMapWithStride = Eigen::Map<const Eigen::Matrix<type, Eigen::Dynamic, Eigen::Dynamic>, 0, Eigen::Stride<Eigen::Dynamic, Eigen::Dynamic>>;
28
34template <typename type>
35inline Eigen::Map<Eigen::Matrix<type, Eigen::Dynamic, Eigen::Dynamic>> to_eigen(MultiDimensionalArray<type>& input);
36
42template <typename type>
43inline Eigen::Map<const Eigen::Matrix<type, Eigen::Dynamic, Eigen::Dynamic>> to_eigen(const MultiDimensionalArray<type>& input);
44
54template <typename type>
55inline EigenMapWithStride<type> to_eigen(MultiDimensionalArray<type>& input, const std::vector<int>& slice);
56
66template <typename type>
67inline ConstEigenMapWithStride<type> to_eigen(const MultiDimensionalArray<type>& input, const std::vector<int>& slice);
68
74template <typename type>
75inline Eigen::Map<Eigen::Matrix<type, Eigen::Dynamic, 1>> to_eigen(Vector<type>& input);
76
82template <typename type>
83inline const Eigen::Map<Eigen::Matrix<type, Eigen::Dynamic, 1>> to_eigen(const Vector<type>& input);
84
91template <typename EigenDerived, typename = std::enable_if_t<Eigen::MatrixBase<EigenDerived>::RowsAtCompileTime != 1 &&
92 Eigen::MatrixBase<EigenDerived>::ColsAtCompileTime != 1>>
93inline MultiDimensionalArray<typename EigenDerived::Scalar> make_variable(const std::string& name, const Eigen::MatrixBase<EigenDerived>& input);
94
95}
96
98
99#endif
100
101
102#endif // MATIOCPP_EIGENCONVERSIONS_H
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.