How I can add marker names with plot function?
조회 수: 20 (최근 30일)
이전 댓글 표시
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.
댓글 수: 0
채택된 답변
Azzi Abdelmalek
2016년 5월 5일
편집: Azzi Abdelmalek
2016년 5월 5일
for k=1:numel(station_id)
text(lon(k)+0.5,lat(k),station_id{k})
end
댓글 수: 0
추가 답변 (1개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Line Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!