how do i make 'Interpreter', 'none' work inside the waitbar text?
이전 댓글 표시
hi
what is the equivalent for " 'Interpreter', 'none' " in the 'waitbar' framework?
thanks a lot,
matty
댓글 수: 2
Stefano Monfardini
2016년 4월 14일
Hi, same question for me
Guillaume
2016년 4월 14일
@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
채택된 답변
추가 답변 (2개)
Orion
2016년 4월 14일
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
2016년 4월 14일
편집: Walter Roberson
2016년 4월 14일
카테고리
도움말 센터 및 File Exchange에서 App Building에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!