Adnan
Adnan

Reputation: 613

Matlab Figure Display

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

Answers (1)

Rody Oldenhuis
Rody Oldenhuis

Reputation: 38032

You mean

figure('Properties........');
drawnow
mainFunctionClass.unzipper(handles);

?

Upvotes: 1

Related Questions