How I can add marker names with plot function?
Show older comments
station_id={'abcd','brmu','vcfd','mnnn'};
lon = [ 2.3349 12.878 8.6649 13.066 ];
lat = [ 48.835 49.1442 50.0906 52.3792 ];
plot(lon,lat,'.r','MarkerSize',20,'Marker','o', 'MarkerFaceColor', 'blue')
xlabel('Longtitude')
ylabel('Latitude')
title('STATIONS')
I need to add "station_id" for each marker in the plot figure.
Accepted Answer
More Answers (1)
Alessandro Masullo
on 5 May 2016
0 votes
You can use the function text
Categories
Find more on Annotations in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!