matlab中调用python脚本(或执行cmd命令行语句)
代码参考:
command = 'test.py &'; %后缀&:立即执行下一句
command = 'test.py'; %无后缀&:等待调用结束
[status,cmdout] = system(command,'-echo');%system([cmd指令])
参考:详解MATLAB的函数system()和shell转义字符“感叹号”,并利用它们实现在MATLAB中运行(调用)外部exe程序_matlab system函数-CSDN博客