how do i make 'Interpreter', 'none' work inside the waitbar text?
Afficher commentaires plus anciens
hi
what is the equivalent for " 'Interpreter', 'none' " in the 'waitbar' framework?
thanks a lot,
matty
2 commentaires
Stefano Monfardini
le 14 Avr 2016
Hi, same question for me
Guillaume
le 14 Avr 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
Réponse acceptée
Plus de réponses (2)
Orion
le 14 Avr 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
le 14 Avr 2016
Modifié(e) : Walter Roberson
le 14 Avr 2016
Catégories
En savoir plus sur App Building dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!