how to write a code to extract a positive latitude value for the corresponding positive longitudinal cell value
    6 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
 suppose we have longitudinal =[-50;-60;-70;-80;-90;-100;-50.5;-60.5;-70.5;-80.5;-90.5;-100.5;50;60;70;80;90;100;50;60;70;80;90;-100.5]
and latitude =[-5;-10;-20;-30;-40;50;-1.5;-10.5;-20.5;-30.5;-40.5;50.5;0;10;20;30;40;50;0.5;10.5;20.5;30.5;40.5;50.5] data point like this then for the longitudinal range(i.e 50 to 100) we should get the postive latitude range(i.e 0 to 40)
for example :the  longitudinal value 90 have the corresponding latitudinal value 40 and similarly longitude value 100 have latitude 50.
plz help in getting the code and the  range should be for longitudinal(50 to 100) latitude (0 to 40) ,within this range only i have to get data points
0 Commenti
Risposte (1)
  Fabio Freschi
      
 il 13 Ott 2019
        % filter
idx = longitudinal >= 50 & longitudinal <= 100 & latitude >= 0 & latitude <= 40;
% selection
longitudinal2 = longitudinal(idx);
latitude2 = latitude(idx);
4 Commenti
  Fabio Freschi
      
 il 14 Ott 2019
				Sorry but I still don't understand: isn't this the output you get running my code and concatenating the two outputs like this:
out = [latitude2 longitudinal2];
?
Vedere anche
Categorie
				Scopri di più su Cell Arrays 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!

