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
9
10
15
20
25
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}
CellArray is a particular type of Variable specialized for cell arrays.
Definition CellArray.h:18
MultiDimensionalArray is a particular type of Variable specialized for multidimensional arrays of a g...
Vector< char > String
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.
T to_string(T... args)