How to Add an Alphanumeric Character to a Shape?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Rightia Rollmann
el 5 de Feb. de 2017
How can I add the number “1” in the middle of the circle below?
r = rectangle('Position', [2 3 5 5], 'Curvature', 1, 'FaceColor', 'g'); axis equal;
0 comentarios
Respuesta aceptada
Stephen23
el 5 de Feb. de 2017
Editada: Stephen23
el 5 de Feb. de 2017
>> pos = [2,3,5,5];
>> r = rectangle('Position',pos, 'Curvature',1, 'FaceColor','g'); axis equal;
>> text(pos(1)+pos(3)/2,pos(2)+pos(4)/2, '1', 'FontSize',24,...
'HorizontalAlignment','center','VerticalAlignment','middle')
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Data Exploration 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!