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.

 采纳的回答

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

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)?

请先登录,再进行评论。

更多回答(0 个)

类别

帮助中心File Exchange 中查找有关 App Building 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by