i have 3 column of data lat ,long &depth. how can i select depth within a range of lat& long?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
lat long depth 3 column of data.
0 Kommentare
Antworten (1)
Jos (10584)
am 19 Feb. 2014
Using logical indexing. Assuming data holds the three columns, try this:
IsLatitudeInRange = data(:,1) > MinLatitude & data(:,1) < maxLatitude
IsLongitudeInRange = data(:,2) > MinLongitude & data(:,2) < maxLongitude
IsToInclude = IsLatitudeInRange & IsLongitudeInRange
DepthSelected = data(IsToInclude,:)
0 Kommentare
Siehe auch
Kategorien
Mehr zu Other Formats finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!