Why does mxCreateDoubleMatrix() returns NULL?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
MathWorks Support Team
il 16 Lug 2020
Modificato: MathWorks Support Team
il 31 Gen 2025
I am using the following MATLAB External Interface API, to create a double matrix
>> mxCreateDoubleMatrix(3,3,mxREAL)
It returns NULL, why?
Risposta accettata
MathWorks Support Team
il 25 Gen 2025
Modificato: MathWorks Support Team
il 31 Gen 2025
Call the following API before using 'mxCreateDoubleMatrix'
>> mclInitializeApplication
This sets up the application state shared by all MATLAB Runtime instances created in the current process. For more information on this API, you can view the release-specific documentation by executing the following command in the MATLAB R2020a command window:
>> web(fullfile(docroot, 'compiler_sdk/cxx/mclinitializeapplication.html'))
For further information regarding the current release, please follow the link below:
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su C Shared Library Integration in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!