How can I type inverse sign in axis labels?
조회 수: 6 (최근 30일)
표시 이전 댓글
I'd like to type something like in the picture in the x label text. Can someone tell me how to do that?
댓글 수: 0
답변 (1개)
Star Strider
2018년 5월 2일
Try this:
figure
plot(rand(1,20), rand(1,20), 'p')
xlabel('A^{-1}') % Using Default ‘TeX’ Interpreter
xlabel('$A^{^-1}$', 'Interpreter','latex') % Using ‘LaTeX’ Interpreter
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!