104 switch (
input->data_type)
106 case matio_types::MAT_T_INT8:
109 case matio_types::MAT_T_UINT8:
112 case matio_types::MAT_T_INT16:
115 case matio_types::MAT_T_UINT16:
118 case matio_types::MAT_T_INT32:
121 case matio_types::MAT_T_UINT32:
124 case matio_types::MAT_T_SINGLE:
127 case matio_types::MAT_T_DOUBLE:
130 case matio_types::MAT_T_INT64:
133 case matio_types::MAT_T_UINT64:
136 case matio_types::MAT_T_UTF8:
139 case matio_types::MAT_T_UTF16:
142 case matio_types::MAT_T_UTF32:
145 case matio_types::MAT_T_STRING:
148 case matio_types::MAT_T_CELL:
149 case matio_types::MAT_T_STRUCT:
150 case matio_types::MAT_T_ARRAY:
151 case matio_types::MAT_T_MATRIX:
154 case matio_types::MAT_T_COMPRESSED:
155 case matio_types::MAT_T_FUNCTION:
156 case matio_types::MAT_T_UNKNOWN:
161 if (
input->isLogical)
169 if ((
input->class_type == matio_classes::MAT_C_OBJECT) ||
170 (
input->class_type == matio_classes::MAT_C_SPARSE) ||
171 (
input->class_type == matio_classes::MAT_C_FUNCTION) ||
172 (
input->class_type == matio_classes::MAT_C_OPAQUE) ||
181 for (
int i = 0;
i <
input->rank; ++
i)
186 if (
input->class_type == matio_classes::MAT_C_CELL ||
input->data_type == matio_types::MAT_T_CELL)
192 if (
input->data_type == matio_types::MAT_T_STRUCT)
207 if (
input->data_type == matio_types::MAT_T_STRUCT)
215 else if ((
input->rank == 2) && ((
input->dims[0] == 1) || (
input->dims[1] == 1)))
235 switch (
input->data_type)
237 case matio_types::MAT_T_INT8:
240 case matio_types::MAT_T_UINT8:
243 case matio_types::MAT_T_INT16:
246 case matio_types::MAT_T_UINT16:
249 case matio_types::MAT_T_INT32:
252 case matio_types::MAT_T_UINT32:
255 case matio_types::MAT_T_SINGLE:
258 case matio_types::MAT_T_DOUBLE:
261 case matio_types::MAT_T_INT64:
264 case matio_types::MAT_T_UINT64:
267 case matio_types::MAT_T_UTF8:
270 case matio_types::MAT_T_UTF16:
273 case matio_types::MAT_T_UTF32:
276 case matio_types::MAT_T_STRING:
279 case matio_types::MAT_T_CELL:
282 case matio_types::MAT_T_STRUCT:
285 case matio_types::MAT_T_ARRAY:
288 case matio_types::MAT_T_MATRIX:
291 case matio_types::MAT_T_COMPRESSED:
294 case matio_types::MAT_T_FUNCTION:
297 case matio_types::MAT_T_UNKNOWN:
302 if (
input->isLogical)
307 switch (
input->class_type)
bool get_matio_types(const VariableType &inputVariableType, const ValueType &inputValueType, matio_classes &outputMatioClasses, matio_types &outputMatioType)
Get both the matio type and class from the input VariableType and ValueType.