필터 지우기
필터 지우기

Turn off the latex interpreter in clustergram

조회 수: 2 (최근 30일)
Opt User
Opt User 2017년 6월 16일
댓글: Gopinath Karuppannan 2019년 11월 21일
The dreaded default latex interpreter hunts me again. How can I turn it off in a clustergram? I tried rendering the clustergram object into a figure using fh = plot(cgo) but still no luck with set(fh,'interpreter','none')
  댓글 수: 1
Gopinath Karuppannan
Gopinath Karuppannan 2019년 11월 21일
Can some one explain why we have to use set(h,'Interpreter','none') . I have tried with and without use of this command. nothing changed in results.Here h is given as legend.
Thanks

댓글을 달려면 로그인하십시오.

채택된 답변

Sagar Doshi
Sagar Doshi 2017년 6월 20일
Try the following: h = plot(cgo); set(h,'TickLabelInterpreter','none');
You may not be able to set it directly on the clustergram object. I believe you will have to set it individually for axes, labels and text objects.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Import and Management에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by