How to plot a map with Latitude, Longitude and Elevation of India?
조회 수: 8 (최근 30일)
이전 댓글 표시
I have 3 arrays containing the Latitude, Longitude and Elevation. All three of them are column vectors and of India. How do I plot a map on MATLAB using these 3 arrays where the values correspond to the elevation data?
댓글 수: 0
답변 (1개)
Reeshabh Kumar Ranjan
2020년 7월 6일
편집: Reeshabh Kumar Ranjan
2020년 7월 6일
>> x = linspace(1, 199, 100);
>> y = x;
>> z = rand(100);
>> mesh(x, y, z);
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Orange에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!