Effacer les filtres
Effacer les filtres

Improper Arguments. Waitbar Error

5 vues (au cours des 30 derniers jours)
Matthias
Matthias le 12 Juin 2013
Commenté : Felix le 5 Fév 2024
I have problems using my waitbar. This is the code I want to run:
h = waitbar(0,'uiae');
for file_num = 1:numel(files)
waitbar(file_num/numel(files),h);
end
but I get the following Error:
Error using waitbar (line 110)
Improper arguments for waitbar.
Error in Analyze_NM__Measurement (line 47)
waitbar(file_num/numel(files),h);
Caused by:
Error using getappdata
Invalid object handle
Even if I run it like this I will get the same Error:
h = waitbar(0,'uiae');
for file_num = 1:numel(files)
waitbar(0.5,h);
end
Similar uses in other program work just fine. What is my mistake?
  1 commentaire
Felix
Felix le 5 Fév 2024
I have the same error. Im running the new matlab desktop. not sure if pertains to that version specifically.

Connectez-vous pour commenter.

Réponses (0)

Catégories

En savoir plus sur Dialog Boxes dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by