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.

 Akzeptierte Antwort

Ameer Hamza
Ameer Hamza am 2 Mai 2018

1 Stimme

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

2 Kommentare

David Polakovic
David Polakovic am 2 Mai 2018
Bearbeitet: David Polakovic am 2 Mai 2018
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)?
Ameer Hamza
Ameer Hamza am 2 Mai 2018
In App designer use uiprogressdlg.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu App Building finden Sie in Hilfe-Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by