How to plot a map with Latitude, Longitude and Elevation of India?
3 次查看(过去 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!