How to plot a map with Latitude, Longitude and Elevation of India?
7 ビュー (過去 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!