在sublime下配置 Matlab 编译环境:配置过程1. 新建Build System在Sublime中选择Tools -> Build System -> New Build System,系统会创建一个JSON文件,根据不同系统输入以下内容:{ "cmd":["路径","-nodesktop","-nosplash","-r","\"run('$file')\""], \\ "selector":"source.m", "working_dir":"${project_path:${folder}}"}要注意cmd中对应的安装路径,这里给的路径是我的电脑中的配置。其中,matlab -nosplash -nodesktop -r ${file_base_name}表示启动matlab,并运行某个.m文件。-nosplash表示不加载启动界面;-nodesktop表示不加载GUI界面;-r表示运行Matlab命令行(MATLAB_command);file_base_name表示文件名,但不包含文件扩展名,如.m等。参考: https://bbs.deepin.org/forum.php?mod=viewthread&tid=166249&extra= https://blog.csdn.net/AnimateX/article/details/80756860