A.2.4 Массивы ячеек с MEX-файлами ¶
Можно выполнять точно такие же операции с массивами ячеек в MEX-файлах, как и в окт-файлах. Пример, дублирующий функцию окт-файла celldemo.cc в MEX-файле, представлен в файле mycell.c, как показано ниже.
#include "mex.h"
void
mexFunction (int nlhs, mxArray *plhs[],
int nrhs, const mxArray *prhs[])
{
mwSize n;
mwIndex i;
if (nrhs != 1 || ! mxIsCell (prhs[0]))
mexErrMsgTxt ("ARG1 must be a cell");
n = mxGetNumberOfElements (prhs[0]);
n = (n > nlhs ? nlhs : n);
for (i = 0; i < n; i++)
plhs[i] = mxDuplicateArray (mxGetCell (prhs[0], i));
} Вывод также идентичен версии окт-файла.
[b1, b2, b3] = mycell ({1, [1, 2], "test"})
⇒
b1 = 1
b2 =
1 2
b3 = test Обратите внимание в примере на использование функции mxDuplicateArray. Это необходимо, так как указатель mxArray, возвращаемый функцией mxGetCell, может быть удален. Обратной функцией к mxGetCell, используемой для установки значений ячеек, является mxSetCell, определенная как
void mxSetCell (mxArray *ptr, int idx, mxArray *val);
Наконец, для создания массива или матрицы ячеек подходят следующие функции:
mxArray *mxCreateCellArray (int ndims, const int *dims); mxArray *mxCreateCellMatrix (int m, int n);
© 1996–2023 The Octave Project Developers
Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies.
Permission is granted to copy and distribute modified versions of this manual under the conditions for verbatim copying, provided that the entire resulting derived work is distributed under the terms of a permission notice identical to this one.Permission is granted to copy and distribute translations of this manual into another language, under the above conditions for modified versions.
https://docs.octave.org/v9.2.0/Cell-Arrays-with-Mex_002dFiles.html