【发布时间】:2013-04-04 19:49:33
【问题描述】:
我的代码使用以下方法打开 4 个文本文件:
system('open 1.txt'); %using MAC OS
system('open 2.txt');
system('open 3.txt');
system('open 4.txt');
并将它们显示为堆叠顺序:
但我想像这样向他们展示:
这可以使用 matlab 吗?
【问题讨论】:
标签: macos matlab window organization
我的代码使用以下方法打开 4 个文本文件:
system('open 1.txt'); %using MAC OS
system('open 2.txt');
system('open 3.txt');
system('open 4.txt');
并将它们显示为堆叠顺序:
但我想像这样向他们展示:
这可以使用 matlab 吗?
【问题讨论】:
标签: macos matlab window organization
不使用纯 Matlab,不。确实你需要研究如何在 osx 中以编程方式重新定位窗口,然后编写一个程序/mexFunction 将该部分包装起来供 Matlab 调用。
在 Windows 系统上,我可能会寻找相关的 Windows API 调用,对于 Mac,我不确定。希望 SO 上的其他人知道。
【讨论】: