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
ExogenousConversions.cpp
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
#include <
matioCpp/ExogenousConversions.h
>
9
10
11
matioCpp::Element<matioCpp::Logical>
matioCpp::make_variable
(
const
std::string
& name,
bool
input
)
12
{
13
return
matioCpp::Element<matioCpp::Logical>
(name,
input
);
14
}
15
16
matioCpp::String
matioCpp::make_variable
(
const
std::string
& name,
const
std::string
&
input
)
17
{
18
return
matioCpp::String
(name,
input
);
19
}
20
21
matioCpp::Vector<matioCpp::Logical>
matioCpp::make_variable
(
const
std::string
& name,
const
std::vector<bool>
&
input
)
22
{
23
return
matioCpp::Vector<matioCpp::Logical>
(name,
input
);
24
}
25
26
matioCpp::CellArray
matioCpp::make_variable
(
const
std::string
& name,
const
std::vector<std::string>
&
input
)
27
{
28
matioCpp::CellArray
stringsArray
(name, {
input
.size(), 1});
29
for
(
size_t
i
= 0;
i
<
input
.size(); ++
i
)
30
{
31
stringsArray
.setElement(
i
,
make_variable
(
"unused_name_"
+
std::to_string
(
i
),
input
[
i
]));
32
}
33
34
return
stringsArray
;
35
}
ExogenousConversions.h
std::string
matioCpp::CellArray
CellArray is a particular type of Variable specialized for cell arrays.
Definition
CellArray.h:18
matioCpp::MultiDimensionalArray
MultiDimensionalArray is a particular type of Variable specialized for multidimensional arrays of a g...
Definition
MultiDimensionalArray.h:22
matioCpp::String
Vector< char > String
Definition
ForwardDeclarations.h:194
matioCpp::make_variable
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.
Definition
ExogenousConversions.tpp:11
std::to_string
T to_string(T... args)
std::vector
src
ExogenousConversions.cpp
Generated on Thu Feb 27 2025 15:51:20 for matio-cpp by
1.9.8