I have i have a .dat file ... which consists of 213120 rows and 3 columns.... in this file 1st column is longitude, 2nd column is latitude that and 3rd collumn is data, Please find attacment below.
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Sunil Oulkar
le 1 Juin 2016
Réponse apportée : Andrei Bobrov
le 1 Juin 2016
I want data between longitude 86 to 94 and latitude 21 to 29.
0 commentaires
Réponse acceptée
Andrei Bobrov
le 1 Juin 2016
out = p(p(:,1) >= 86 & p(:,1) <= 94 & p(:,2) >= 21 & p(:,2) <= 29,:);
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Geographic Plots dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!