How can I make a file be automatically closed after ending a running matlab script...
显示 更早的评论
Hello,
I've been working on a script that uses the VideoWriter class in order to write each frame generated to an avi file. Currently, I have to use control + C to end the script. This means that the file is not properly closed after the script ends, so if I open it in a video player I get an error due to the lock on the file. I have to manually execute a close statement on the file each time in matlab, which is tedious.
I've looked into the following possibilities:
*I tried using CloseRequestFcn to make the script end when the X button is clicked in the topright of the window. I can close the file here. Unfortunately, however, there does not appear to be a command that ends a script. "quit" exits matlab altogether, which forces me to restart matlab and wait for the IDE to reload.
*As best as I can tell keyboard handling is done with call back functions. I'm not really sure how you can tell the main script to end its loop from a callback function.
Thanks in advance.
采纳的回答
更多回答(2 个)
Chris
2013-6-27
0 个投票
2 个评论
Walter Roberson
2013-6-27
get() of the Value property of a uicontrol object retrieves the current state of the control, such as which item number is selected in a menu, or whether a button is current pressed in or not.
Whether this is "passing variables" around depends on how you think about graphic objects, as to whether the drawn graphic is the "real" object whose state is to be fetched "live", or if the storage variables associated with the graphic object are the "real" object. If the storage is the "real" object, then Yes, get() with a handle is a way of passing variables across scripts, but if the graphic is the "real" object, then No, what is being passed around is locator information rather than a variable.
Chris
2013-6-28
Tom
2013-6-28
0 个投票
What conditions do want to satisfy to make it close? Or rather, what is preventing you from using close(vidObj) ?
类别
在 帮助中心 和 File Exchange 中查找有关 Entering Commands 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!