How to plot a map with Latitude, Longitude and Elevation of India?
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposte (1)
Reeshabh Kumar Ranjan
il 6 Lug 2020
Modificato: Reeshabh Kumar Ranjan
il 6 Lug 2020
>> x = linspace(1, 199, 100);
>> y = x;
>> z = rand(100);
>> mesh(x, y, z);
0 Commenti
Vedere anche
Categorie
Scopri di più su Orange in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!