How to label a stem plot??
65 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Milosha Britto Nordbø
el 3 de Mayo de 2020
Comentada: Star Strider
el 16 de Mayo de 2020
How can i add labels to the stem diagram?? I have attached a pic to be specific where i require the labels.
0 comentarios
Respuesta aceptada
Star Strider
el 3 de Mayo de 2020
Try this:
Year = 1995:2020;
Group = randi([2000 11000], size(Year));
figure
stem(Year, Group, 'filled')
lblc = sprintfc('%d',Group);
text(Year, Group+100, lblc, 'HorizontalAlignment','center', 'VerticalAlignment','bottom')
Make appropriate changes to the text and sprintfc calls to display the result you want. (The sprintfc function is undocumented, however uses the sprintf syntax. You can also use the compose function to produce a cell array of labels.)
2 comentarios
Más respuestas (1)
Ver también
Categorías
Más información sobre Grid Lines, Tick Values, and Labels 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!