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
MultiDimensionalArray.tpp
Go to the documentation of this file.
1/*
2 * Copyright (C) 2020 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_MULTIDIMENSIONALARRAY_TPP
9#define MATIOCPP_MULTIDIMENSIONALARRAY_TPP
10
11template<typename T>
12bool matioCpp::MultiDimensionalArray<T>::checkCompatibility(const matvar_t* inputPtr, matioCpp::VariableType variableType, matioCpp::ValueType valueType) const
13{
14
18 {
19 std::cerr << "[matioCpp::MultiDimensionalArray::checkCompatibility] The variable type is not compatible with a multidimensional array." << std::endl;
20 return false;
21 }
22
23 if (inputPtr->isComplex)
24 {
25 std::cerr << "[matioCpp::MultiDimensionalArray::checkCompatibility] Cannot use a complex variable into a non-complex one." << std::endl;
26 return false;
27 }
28
30 {
33
35
36 std::cerr << "[matioCpp::MultiDimensionalArray::checkCompatibility] The value type is not convertible to " <<
37 get_type<T>::toString() <<"." << std::endl <<
38 " Input class type: " << classType << std::endl <<
39 " Input data type: " << dataType << std::endl;
40 return false;
41 }
42 return true;
43}
44
45template<typename T>
55
56template<typename T>
66
67template<typename T>
69{
72 {
73 if (dim == 0)
74 {
75 std::cerr << "[ERROR][matioCpp::MultiDimensionalArray::MultiDimensionalArray] Zero dimension detected." << std::endl;
76 assert(false);
77 }
78
79 totalElements *= dim;
80 }
81
83
84 initializeVariable(name,
87 (void*)dummy.data());
88}
89
90template<typename T>
92{
94 {
95 if (dim == 0)
96 {
97 std::cerr << "[ERROR][matioCpp::MultiDimensionalArray::MultiDimensionalArray] Zero dimension detected." << std::endl;
98 assert(false);
99 }
100 }
101
102 initializeVariable(name,
105 (void*)inputVector);
106}
107
108template<typename T>
113
114template<typename T>
119
120template<typename T>
123{
124 if (!handler.get() || !checkCompatibility(handler.get(), handler.variableType(), handler.valueType()))
125 {
126 assert(false);
128 constexpr size_t emptyDimensions[] = {0, 0, 0};
129 initializeVariable("unnamed_multidimensional_array",
132 (void*)empty.data());
133 }
134}
135
136template<typename T>
141
142template<typename T>
148
149template<typename T>
155
156template<typename T>
158{
160 {
161 if (dim == 0)
162 {
163 std::cerr << "[ERROR][matioCpp::MultiDimensionalArray::fromVectorizedArray] Zero dimension detected." << std::endl;
164 return false;
165 }
166 }
167
168 return initializeVariable(name(),
171 (void*)inputVector);
172}
173
174template<typename T>
176{
177 assert(dimensions().size() > 0 && numberOfElements() > 0 && "[matioCpp::MultiDimensionalArray::rawIndexFromIndices] The array is empty.");
178 assert(el.size() > 0 == dimensions().size() > 0 && "[matioCpp::MultiDimensionalArray::rawIndexFromIndices] The input vector el should have the same number of dimensions of the array.");
179 assert(el[0] < dimensions()[0] && "[matioCpp::MultiDimensionalArray::rawIndexFromIndices] The required element is out of bounds.");
180
183
184 for (size_t i = 0; i < el.size(); ++i)
185 {
186 assert(el[i] < dimensions()[i] && "[matioCpp::MultiDimensionalArray::rawIndexFromIndices] The required element is out of bounds.");
187 index += el[i] * previousDimensionsFactorial;
188 previousDimensionsFactorial *= dimensions()[i];
189 }
190
191 return index;
192}
193
194template<typename T>
196{
197 el.resize(dimensions().size());
198
199 if (rawIndex >= numberOfElements())
200 {
201 std::cerr << "[ERROR][matioCpp::MultiDimensionalArray::indicesFromRawIndex] rawIndex is greater than the number of elements." << std::endl;
202 return false;
203 }
204
206
207 //First we fill el with the factorial of the dimensions
208
209 for (size_t i = 1; i < el.size(); ++i)
210 {
212 previousDimensionsFactorial *= dimensions()[i];
213 }
214
216
217 for (size_t i = el.size() - 1; i > 0; --i)
218 {
219 el[i] = remainder / el[i - 1];
220 remainder -= el[i] * el[i - 1];
221 }
222 el[0] = remainder;
223
224 return true;
225}
226
227template<typename T>
232
233template<typename T>
238
239template<typename T>
241{
242 return changeName(newName);
243}
244
245template<typename T>
267
268template<typename T>
273
274template<typename T>
279
280template<typename T>
285
286template<typename T>
288{
289 return getArrayNumberOfElements();
290}
291
292template<typename T>
294{
295 return data()[rawIndexFromIndices(el)];
296}
297
298template<typename T>
300{
301 return data()[rawIndexFromIndices(el)];
302}
303
304template<typename T>
306{
307 assert(el < numberOfElements() && "[matioCpp::MultiDimensionalArray::operator()] The required element is out of bounds.");
308 return data()[el];
309}
310
311template<typename T>
313{
314 assert(el < numberOfElements() && "[matioCpp::MultiDimensionalArray::operator()] The required element is out of bounds.");
315 return data()[el];
316}
317
318template<typename T>
320{
321 return data()[rawIndexFromIndices(el)];
322}
323
324template<typename T>
326{
327 return data()[rawIndexFromIndices(el)];
328}
329
330template<typename T>
332{
333 assert(el < numberOfElements() && "[matioCpp::MultiDimensionalArray::operator[]] The required element is out of bounds.");
334 return data()[el];
335}
336
337template<typename T>
339{
340 assert(el < numberOfElements() && "[matioCpp::MultiDimensionalArray::operator[]] The required element is out of bounds.");
341 return data()[el];
342}
343
344template<typename T>
349
350template<typename T>
355
356#endif // MATIOCPP_MULTIDIMENSIONALARRAY_TPP
MultiDimensionalArray is a particular type of Variable specialized for multidimensional arrays of a g...
index_type numberOfElements() const
Get the total number of elements in the array.
reference operator[](const std::vector< index_type > &el)
Access specified element.
matioCpp::Span< element_type > toSpan()
Get this MultiDimensionalArray as a Span.
MultiDimensionalArray()
The const pointer type.
typename std::allocator_traits< std::allocator< element_type > >::const_pointer const_pointer
The pointer type.
MultiDimensionalArray< T > & operator=(const MultiDimensionalArray< T > &other)
Assignement operator (copy) from another MultiDimensionalArray.
bool setName(const std::string &newName)
Change the name of the Variable.
bool fromVectorizedArray(const std::vector< index_type > &dimensions, const_pointer inputVector)
Set from a vectorized array.
bool indicesFromRawIndex(size_t rawIndex, std::vector< index_type > &el) const
Get the indices given the raw index.
reference operator()(const std::vector< index_type > &el)
Access specified element.
void clear()
Clear the multidimensional array.
void resize(const std::vector< index_type > &newDimensions)
Resize the vector.
pointer data()
Direct access to the underlying array.
size_t index_type
Defines how to allocate T.
typename std::allocator_traits< std::allocator< element_type > >::pointer pointer
The reference type.
element_type & reference
The type used for indices.
std::remove_cv_t< element_type > value_type
Defines the type of an element of the MultiDimensionalArray.
index_type rawIndexFromIndices(const std::vector< index_type > &el) const
Get the index in the vectorized array corresponding to the provided indices.
The matioCpp::Variable class is the equivalent of matvar_t in matio.
Definition Variable.h:23
matioCpp::MultiDimensionalArray< T > asMultiDimensionalArray()
Cast the variable as a MultiDimensionalArray.
matioCpp::VariableType variableType() const
Get the VariableType.
Definition Variable.cpp:510
bool initializeVariable(const std::string &name, const VariableType &variableType, const ValueType &valueType, matioCpp::Span< const size_t > dimensions, void *data)
Initialize the variable.
Definition Variable.cpp:16
matioCpp::ValueType valueType() const
Get the ValueType.
Definition Variable.cpp:515
T data(T... args)
T endl(T... args)
T forward(T... args)
T move(T... args)
MATIOCPP_CONSTEXPR Span< ElementType > make_span(ElementType *ptr, typename Span< ElementType >::index_type count)
Definition Span.h:714
VariableType
Define the type of variable.
ValueType
The list of types for an element of a certain variable type.
bool get_types_names_from_matvart(const matvar_t *input, std::string &classType, std::string &dataType)
Get the type names from the input pointer.
Utility metafunction to get the ValueType from a given primitive type.