Cannot find builtin function 'waitbar'

2 vues (au cours des 30 derniers jours)
raym
raym le 6 Déc 2020
Hi,
I am calling builtin fucntion to run waitbar in R2017b but got an error:
Cannot find builtin function 'waitbar'.
Is waitbar function not supported by builtin?
Thanks.
  4 commentaires
raym
raym le 6 Déc 2020
The document says that built-in function is not written in m language but only a description in m file. So the waitbar seems not to be a built-in fucntion.
Ameer Hamza
Ameer Hamza le 6 Déc 2020
How are you calling waitbar in your code?

Connectez-vous pour commenter.

Réponse acceptée

Steven Lord
Steven Lord le 6 Déc 2020
The builtin function is intended to call built-in functions, not functions implemented by MathWorks as function files with the .m or .mlx extensions. The waitbar function is implemented as a .m file. Compare with:
builtin('sin', pi) % sin is a built-in function, its sin.m is help text only
ans = 1.2246e-16
builtin('why') % why is implemented in the file why.m
Cannot find builtin function 'why'

Plus de réponses (0)

Catégories

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

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by