Is it possible to print multiplication sign on a plot title?
조회 수: 77 (최근 30일)
이전 댓글 표시
답변 (2개)
M
2018년 1월 8일
편집: M
2018년 1월 8일
Try with the \times command like in this example :
title('abc \times def')
댓글 수: 6
Walter Roberson
2018년 1월 9일
Are you using sprintf to construct your string? If so then use \\t instead of \t as in
title( sprint('%d \\times %d', 3, 5) )
Kim Folmer Andersen
2018년 1월 8일
title('Is it possible to print * sign on a plot title?') Is this what you are looking for?
참고 항목
카테고리
Help Center 및 File Exchange에서 Title에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!