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 创建的 .txt 文件?基本上让它弹出并成为一个活动窗口(不是在matlab中,而是像从文件夹中打开它一样打开文本文件)。如果是这样,完成此操作的代码是什么?使用 MAC 操作系统。
也许system('notepad filename.txt')在 Windows 和system('open filename.txt')Mac 上。当您使用open时,操作系统将自动使用您为该文件类型设置的默认应用程序。如果要在不同于默认的特定编辑器中打开它,请替换open为正确的命令(如果在路径上)或使用-a标志open为:
system('notepad filename.txt')
system('open filename.txt')
open
-a
system('open -a /full/path/to/application filename.txt')