Is it possible to interpret legends differently?
이전 댓글 표시
I woud like to interpret a legend by 'latex' but another without LaTeX, is it possible?
채택된 답변
추가 답변 (1개)
Jan
2017년 2월 2일
You can set the interpreter for each legend individually:
subplot(1,2,1)
h1 = plot(1:10)
legend(h1, '$2^n$', 'Interpreter', 'LaTeX');
subplot(1,2,2)
h2 = plot(1:20)
legend(h2, '$2^n$', 'Interpreter', 'none');
카테고리
도움말 센터 및 File Exchange에서 Legend에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!