4
A
回答
7
一個選項Interpreter
屬性不適用於數字,我相信(waitbar
創建一個人物對象),但你可以再應用它的waitbar消息:
h=waitbar(x,message);
set(findall(h,'type','text'),'Interpreter','none');
你也可以逃避有問題的角色,但那會更復雜。
4
您也可以將全局Tex解釋器設置爲None
,它也適用於waitbars。
set(0, 'DefaulttextInterpreter', 'none');
0
相反,如以下MWE搜索對象一個可能會改變解釋直接與「點符號」(可用自R2014b)的:
wb = waitbar(0/10,'My_waitbar_string_with_underscores');
wb.Children.Title.Interpreter = 'none';
for i = 1:10
waitbar(i/10,wb,'My_waitbar_string_with_underscores');
pause(1);
end
delete(wb);
這改變了直譯爲放置在等待欄內的軸的標題。
請注意,如果您使用的waitbar取消按鈕,對象改變孩子的數量,人們可能不得不改變
wb.Children.Title.Interpreter
到
wb.Children(2).Title.Interpreter
相關問題
- 1. 在matplotlib中禁用tex解釋器
- 2. 在NativeWindow中等待消息
- 3. 在等待消息時發送消息
- 4. Hiredis等待消息
- 5. 與「等待」消息
- 6. 在Web-Worker中同步等待消息
- 7. JQuery等待消息對話
- 8. SWTBot - 等待消息框
- 9. RabbitMQ等待超時消息
- 10. Websocket等待超時消息
- 11. 商店等待消息
- 12. 等待從消息框
- 13. 等待消息發送window.onbeforeunload?
- 14. Akka:等待多條消息
- 15. 「等待調試器」消息?
- 16. 使用異步等待偵聽消息
- 17. 等待管理代碼中的消息
- 18. 等待在多個阿卡FSM消息
- 19. 在AS400上監控消息等待vb.net
- 20. Matlab中的TeX解釋器uiTable
- 21. ZMQ等待消息,有客戶端等待回覆
- 22. 設定的等待消息,並等待光標
- 23. SendMessage消息號的解釋?
- 24. React.DOM.p(空,消息) - 解釋空
- 25. 在java中執行同步網絡調用等待ack消息?
- 26. C# - 等待WinForms消息循環
- 27. 如何等待一個消息
- 28. 顯示進度條或等待消息
- 29. 谷歌雲消息等待註冊
- 30. AppleScript等待AppleMail下載消息。
嗯作爲awlays,通常方式:hChild = get(hWaitbar,'Children'); hTitle = get(hChild,'title'); set(hTitle,'Interpreter','none'); – HeinrichStack 2012-02-03 10:15:18