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:unzip 无法提取的 zip 文件。所以我需要使用matlab控制DOS提示符并使用另一个程序“7-zip”解压。我将如何在 Matlab 脚本中执行此操作?是否有允许 dos 命令的系统级脚本?
谢谢
使用系统功能:
system('7z e file.tgz')
或使用!(感叹号)字符:
!
!7z e file.tgz
这是包含更多详细信息和示例的文档。