How do i insert the area of each shape in the centre of it?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Yashlin Naidoo
le 19 Mai 2015
Modifié(e) : Yashlin Naidoo
le 30 Mai 2015
This is my code below :
0 commentaires
Réponse acceptée
Image Analyst
le 19 Mai 2015
Use sprintf() to create a string with the area in it. Then use text() to place it in the axes
caption = sprintf('Area = %.1f', area);
text(x, y, caption);
Of course you need to figure out what x and y are to position the string in the best looking spot.
8 commentaires
Image Analyst
le 25 Mai 2015
Not sure what you mean. To get every triangle, or just any triangle in general, you have to make the x and y have the coordinates of the three vertices. But I'm sure you know that already , so I'm not really sure what the question is.
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Annotations dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!