Plot linear function in real time - status bar

Hi!
Long time reader, first time writer. I would like to ask how to plot basic linear function in real time in order to make a status bar. thank you for answers - I am still new in Matlab, and I want to improve myself.

 Accepted Answer

See waitbar(). Try this code
w = waitbar(0, 'myWaitbar')
for i = 0:0.01:1
waitbar(i, w, 'myWaitbar');
end

2 Comments

Thank you, works perfect! But, just in case, can this waitbar be part of a application made in app designer? Like part of window (form, figure)?

Sign in to comment.

More Answers (0)

Categories

Find more on App Building in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!