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 中绘制文件的最后(最新)行。
我有“选择”posix系统调用的MATLAB(或八度)等价物吗?
我找到了一种方法,但它不是可移植的,如果你需要,你不能用 Ctrl-C 把它扔掉:
system('inotifywait -qq -t 1 -e modify foo.dat');
您需要在安装了“inotify-tools”软件包的情况下运行 linux。