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!