Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 Matlab 脚本,每次系统重新启动时都需要运行它。我在系统服务器上安装了 Matlab。系统每周都会重新启动(周日,但不特定于任何时间段)。
我可以在每次系统重新启动时运行 m 文件吗?
您可以使用以下命令从终端运行任何 matlab 脚本
matlab -nodisplay myfile.m
因此,如果您在系统启动时运行的批处理脚本中包含该行,则每次系统重新启动时都应该运行它。