Invalid MEX-file in Matlab Online

2 次查看(过去 30 天)
Po-Chun
Po-Chun 2022-12-28
评论: Divyam 2025-1-2
Hi,
I am tring to run a code in Matlab Online recently:
However, when I extracted the files and ran the examples, it always said
"Invalid MEX-file '/MATLAB Drive/Release2/MCmatlab-Release/+MCmatlab/@model/private/MCmatlab.mexa64':
/lib/x86_64-linux-gnu/libm.so.6: version `GLIBC_2.29' not found (required by /MATLAB
Drive/Release2/MCmatlab-Release/+MCmatlab/@model/private/MCmatlab.mexa64)".
I found solutions like
But I cannot find a place like CMD or shell in the cloud environment to do the job.
Is there any way to install or link to the library?
Many thanks.

回答(1 个)

Divyam
Divyam 2025-1-2
编辑:Divyam 2025-1-2
You can run external commands in MATLAB by using the "!" character as a shell escape character in the MATLAB command line. You can also use the "system" function to run system level commands for your operating system.
!mkdir newdir
system('mkdir newdir')
For more information regarding the use of "!" to run external commands, refer to this documentation: https://www.mathworks.com/help/matlab/matlab_external/run-external-commands-scripts-and-programs.html
For more information regarding the "system" function, refer to this documentation: https://www.mathworks.com/help/matlab/ref/system.html
  2 个评论
Walter Roberson
Walter Roberson 2025-1-2
You would not use system() to execute a .mex* file. .mex* files are designed to be called directly from MATLAB.
Divyam
Divyam 2025-1-2

The system() function is not used for the mex files but for the system commands mentioned in the MATLAB answers in the question.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Write C Functions Callable from MATLAB (MEX Files) 的更多信息

产品


版本

R2022b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by