plot based on Table
이전 댓글 표시
I have a table like this
id nodeName longitude Latitude
'0' 'Sydney1' '151.20732' '-33.86785'
'1' 'Brisbane2' '153.02809' '-27.46794'
'2' 'Canberra1' '149.12807' '-35.28346'
that contain id of Nodes, Nod names and geographical longitudes and Latitudes.
now i want to have graph that be ecording to longitude and Latitude and also show the nod names as label of Nodes in plot. but i cant.
댓글 수: 3
Cris LaPierre
2021년 1월 31일
Why not? What error message are you getting? Share the code you are using.
M Abedi
2021년 2월 1일
Walter Roberson
2021년 2월 1일
NodeCell2 = cell{1,4};
NodeCell2{1} = str2double(all_ids);
NodeCell2{2} = categorical(all_names);
NodeCell2{3} = str2double(all_longs);
NodeCell2{4} = str2double(all_lats);
scatter(NodeCell2{3}, NodeCell2{4});
text(NodeCell2{3}, NodeCell2{4}, NodeCell2{1}); %you might need string(NodeCell2{1}))
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Geographic Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
