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.

 Risposta accettata

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

2 Commenti

David Polakovic
David Polakovic il 2 Mag 2018
Modificato: David Polakovic il 2 Mag 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)?
In App designer use uiprogressdlg.

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su App Building in Centro assistenza e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by