how do i make 'Interpreter', 'none' work inside the waitbar text?
Ältere Kommentare anzeigen
hi
what is the equivalent for " 'Interpreter', 'none' " in the 'waitbar' framework?
thanks a lot,
matty
2 Kommentare
Stefano Monfardini
am 14 Apr. 2016
Hi, same question for me
Guillaume
am 14 Apr. 2016
@Stefano, please ask your own question. That way when it is answered you can accept the answer.
Note that the 2016 answer would not apply to the 2013 version of matlab
Akzeptierte Antwort
Weitere Antworten (2)
Orion
am 14 Apr. 2016
Hi,
Here's one way to do it
% Create a classic waitbar
h = waitbar(0,'my_name');
% change the interpreter of the String
myString = findall(h,'String','my_name');
set(myString,'Interpreter','none')
mat
am 14 Apr. 2016
Bearbeitet: Walter Roberson
am 14 Apr. 2016
Kategorien
Mehr zu App Building finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!