Reputation: 613
So I have the following matlab code:
figure('Properties........');
mainFunctionClass.unzipper(handles);
I am trying to create a sort of a custom progress bar with the figure. But the problem here is, that the figure is being displayed AFTER the following function is complete. Is there a way to disply the figure first??
Upvotes: 0
Views: 135
Reputation: 38032
You mean
figure('Properties........');
drawnow
mainFunctionClass.unzipper(handles);
?
Upvotes: 1