How to manualy break a for loop but continue with the rest of matlab code execution?

8 ビュー (過去 30 日間)
H-H
H-H 2014 年 7 月 28 日
編集済み: Patrik Ek 2014 年 7 月 28 日
How to manually break a for loop in matlab during execution so that the program get out of loop and continue the rest of the code after the for loop?
I define a for loop for 2000 iterations. Each iteration needs to perform an expensive function evaluation for a few minutes which give me a new point (x,y) to dynamically update my line plot. I am going to dynamically plot (x,y) points. Whenever the user decides not to continue with the for loop based on the shape of the dynamic plot, he /she should be able to break the loop and continue with next piece of codes comes after the loop. Note that Ctr+C just kills all the codes.
  1 件のコメント
David Young
David Young 2014 年 7 月 28 日
Is it acceptable for the user to be asked whether or not to continue each time the end of the loop is reached?

サインインしてコメントする。

採用された回答

Patrik Ek
Patrik Ek 2014 年 7 月 28 日
編集済み: Patrik Ek 2014 年 7 月 28 日
It is possible, but not trivial. Matlab figures is a one type of gui. For these there are some defined processes that can do what you want to. Speaking lower level, you can say that you pushes and pulls event from an event queue, that most likely runs in a separate thread (maybe windows iostream?). This is implemented in the matlab gui elements in the form of callback functions. You do not need to think about it yourself, since the callback functions are already defined. What you must do however is to define an action that will occur when the callback is triggered. This is done in this simple example.
First write a function myCallback that will change color of the plotted line when triggered:
function myCallback(hObject,eventdata)
c = 'krym';
n = randi([1,4],1);
ch = get(gca,'Children');
set(ch,'Color',c(n));
Then create a plot and tell the gui to perform myCallback when triggered:
plot(1:10,'LineW',2)
set(gcf,'ButtonDownFcn',@myCallback)
This will change line color of the plotted line when I click the mouse on the figure, but outside the axes. You may instead want to write a function calling close when some action is triggered and break then break the loop if the figure is closed.

その他の回答 (2 件)

Robert Cumming
Robert Cumming 2014 年 7 月 28 日
You can do it all in your loop:
h = figure;
ax = axes( 'parent', h, 'nextplot', 'add', 'xlim', [0 200] );
x = [1:2000];
y = nan(1,2000);
for i=1:2000;
drawnow()
if ~ishandle ( h ); break; end
y(i) = rand(1);
plot ( x, y, 'rs-' );
end
fprintf ( 'user exited after %i iterations\n', i );
% continue your code
Obviously this deletes your plot after the loop - but the idea is that you have a figure (could be a msgbox...) which the user can use to interrupt the process. The for loop breaks when this figure handle is no longer valid (i.e. its been deleted).
  1 件のコメント
Patrik Ek
Patrik Ek 2014 年 7 月 28 日
Great solution. The problem is only that the code becomes less flexible than if an own callback function is generated. For example it would be possible to save the figure before closing in a callback. It would also be possible to keep the figure using a global variable exitThisForLoop (I know globals are in general bad, but in this case it is far simpler than any other solution). However, this solution is really simple and that is always good.

サインインしてコメントする。


Julia
Julia 2014 年 7 月 28 日
See "break" and "return" in the Matlab help.
  2 件のコメント
David Young
David Young 2014 年 7 月 28 日
Isn't the essence of the question about how to manage the user interaction?
Patrik Ek
Patrik Ek 2014 年 7 月 28 日
I think so too, and return returns from the function, which is not what is expected.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeInteractive Control and Callbacks についてさらに検索

製品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by