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!