Cannot find builtin function 'waitbar'
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
raym
am 6 Dez. 2020
Beantwortet: Steven Lord
am 6 Dez. 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 Kommentare
Akzeptierte Antwort
Steven Lord
am 6 Dez. 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
builtin('why') % why is implemented in the file why.m
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Dialog Boxes finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!