Is it possible to print multiplication sign on a plot title?
77 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
×
0 comentarios
Respuestas (2)
M
el 8 de En. de 2018
Editada: M
el 8 de En. de 2018
Try with the \times command like in this example :
title('abc \times def')
6 comentarios
Walter Roberson
el 9 de En. de 2018
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
el 8 de En. de 2018
title('Is it possible to print * sign on a plot title?') Is this what you are looking for?
1 comentario
Ver también
Categorías
Más información sobre Title en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!