在 Matlab 中将文本打印到文件中
我想记录我的程序的运行情况,特别是每个部分的运行时间。此时我使用 disp
打印到屏幕。有没有办法让我打印的一些内容也可以打印到文本文件中?
I want to log the running of my program, specifically the running time of each part. At this moment I print to the screen using disp
. Is there a way so that some of the things I print would also be printed into a text file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 DIARY 命令来捕获命令窗口中的所有内容。
You can use the DIARY command, that captures everything from the command window.
对于此问题还有其他解决方案,您可以写入程序运行时打开的一个或多个日志文件。这提供了永久记录,不会污染您的工作空间或日记。如果您编译 MATLAB 应用程序,它也能很好地工作。
Jan Simon 在 MATLAB Central 提供了一个很好的解决方案它使用持久文件 ID,因此可以在具有许多功能的应用程序中一次又一次地使用日志到文件机制,而无需传递文件 ID。
MATLAB Central 的其他内容(此处 和 此处)开发了基于类的解决方案具有更多功能。
There are other solutions to this problem where you write to one or more logfiles opened when your program is running. This provides a permanent record without polluting your work space or diary. It also works well if you compile your MATLAB application.
Jan Simon has a nice solution at MATLAB Central which uses a persistant file id so the log to file mechanism can be used again and again throughout an application with many functions without passing the file id about.
Others at MATLAB Central (here and here) have developed class based solutions with more features.
另外,
fprintf
。Also,
fprintf
.