How can I run uifigure over uiaxes inside my app?
4 次查看(过去 30 天)
显示 更早的评论
Hi All,
I have written the following code to run one uiprogress (as a waitbar) as computing process is in progress. It runs properly via uifigure but I need to run it over UIAxes within my GUI environment (developed by app designer). Would you please have a look and kindly correct my code (if possible)?
Many Thanks,
Moh
*****************************************
function CalculationButtonPushed(app, event)
fig = uifigure;
d = uiprogressdlg(fig,'Message','In progress','Title','Computing SVD',...
'Indeterminate','on');
drawnow
% Execute the computation
[u s v] = svds(rand(50000,200),10);
sc = u*s;
% close the dialog box
close(d)
close(fig)
end
0 个评论
回答(1 个)
Reshma Nerella
2022-2-3
Hi,
I understand that you want to embed progress bar in the app created using app designer instead of external uifigure. Here are the similar questions that will help you to get the solution.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Develop uifigure-Based Apps 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!