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.

 採用された回答

Ameer Hamza
Ameer Hamza 2018 年 5 月 2 日

1 投票

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

2 件のコメント

David Polakovic
David Polakovic 2018 年 5 月 2 日
編集済み: David Polakovic 2018 年 5 月 2 日
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 2018 年 5 月 2 日
In App designer use uiprogressdlg.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeApp Building についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by