Linux下安装MATLAB可参照以下链接:
https://blog.csdn.net/qq_31285709/article/details/82083902
在vscode 中运行.m文件。
首先下载插件matlab、MATLAB code run、MATLAB-fomatter
然后在Settings中搜索MATLAB,在MATLAB configuration中设置MATLAB 执行路径
在.m文件下 ctrl+shift+p 或者右键Command Palette,找到Run Matlab File,可输入进行搜索
点击Run Matlab File,其在命令行生成如下命令:
$matlab -nosplash -nodesktop -sd /home/xxx/dd/Pro_1 -r "run('./examples/gen.m');"
回车执行结果如下:
在该命令行下可以使用命令
>>run('./examples/gen.m')
退出
>>exit()