API Matrix C
mxArray
per rappresentare i dati di MATLABPer scrivere programmi C che lavorano con MATLAB® R2017b, o release precedenti, utilizzare le funzioni nell’API Matrix C. Queste funzioni lavorano con la struttura di dati mxArray
e sono utilizzate per costruire funzioni MEX C o applicazioni engine C.
Nota
Quando possibile, scegliere C++ rispetto alle applicazioni in C.
Esistono due versioni dell'API Matrix C.
L’API complessa interlacciata include le funzionalità dell’API Matrix C a partire da MATLAB R2018a. Per maggiori informazioni, vedere MATLAB Support for Interleaved Complex API in MEX Functions.
L’API complessa separata include le funzionalità dell’API Matrix C a partire da MATLAB R2017b.
Per esempi di utilizzo di queste funzioni di libreria, vedere:
Per informazioni esemplificative vedere le singole funzioni. Ad esempio, vedere
mxIsChar
.
Attenzione
L’API Matrix C non è compatibile con API dei dati di MATLAB per C++, che supporta le feature moderne di C++. Non è possibile utilizzare le funzioni dell’API Matrix C con le funzioni delle API di MATLAB descritte in Scrittura di funzioni C++ chiamabili da MATLAB (file MEX) o Chiamata di MATLAB da C++.
Tipi di dati C
mxArray | C type for MATLAB array |
mwSize | C type for mxArray size values |
mwIndex | C type for mxArray index values |
mwSignedIndex | Signed integer C type for mxArray size values |
mxChar | Type for string array |
mxLogical | Type for logical array |
mxComplexity | Flag specifying whether array has imaginary components |
Attributi di mxArray
mxIsNumeric | Determine whether mxArray is numeric |
mxIsComplex | Determine whether data is complex |
mxGetNumberOfDimensions | Number of dimensions in mxArray |
mxGetElementSize | Number of bytes required to store each data element |
mxGetDimensions | Pointer to dimensions array |
mxSetDimensions | Modify number of dimensions and size of each dimension |
mxGetNumberOfElements | Number of elements in numeric mxArray |
mxCalcSingleSubscript | Offset from first element to desired element |
mxGetM | Number of rows in mxArray |
mxSetM | Set number of rows in mxArray |
mxGetN | Number of columns in mxArray |
mxSetN | Set number of columns in mxArray |
mxIsEmpty | Determine whether mxArray is empty |
mxIsFromGlobalWS | Determine whether mxArray was copied from MATLAB global workspace |
Creazione, query e accesso ai tipi di dati
Eliminazione e duplicazione di mxArray
mxDestroyArray | Free dynamic memory allocated by MXCREATE* functions |
mxDuplicateArray | Make deep copy of array |
Conversione di mxArray
Gestione della memoria dati
mxCalloc | Allocate dynamic memory for array, initialized to 0, using MATLAB memory manager |
mxMalloc | Allocate uninitialized dynamic memory using MATLAB memory manager |
mxRealloc | Reallocate dynamic memory using MATLAB memory manager |
mxFree | Free dynamic memory allocated by mxCalloc, mxMalloc, mxRealloc, mxArrayToString, or mxArrayToUTF8String functions |
Asserzioni
Costanti
mxIsInf | Determine whether input is infinite |
mxIsFinite | Determine whether input is finite |
mxIsNaN | Determine whether input is NaN (Not-a-Number) |
Argomenti
- Pass Strings in C MEX File
This example shows how to pass strings to a MEX function built with the C Matrix API.
- Pass Scalar Values in C MEX File
This example shows how to write a MEX file that passes scalar values.
- Handle Sparse Arrays in C MEX File
This example shows how to populate a sparse matrix using the C Matrix API.
- Handle 8-, 16-, 32-, and 64-Bit Data in C MEX File
This example shows how to use unsigned 16-bit integers in a MEX file using the C Matrix API.
- Pass Structures and Cell Arrays in C MEX File
This example shows how to pass structures and cell arrays to MEX files built with the C Matrix API.
- Manipulate Multidimensional Numerical Arrays in C MEX Files
You can manipulate multidimensional numerical arrays by using typed data access functions like
mxGetDoubles
andmxGetComplexDoubles
.