Effacer les filtres
Effacer les filtres

Subextract data from a matrix

2 vues (au cours des 30 derniers jours)
Joao
Joao le 9 Mar 2012
Dear all,
I'm trying to plot some satellite data with matlab, in which I would like to subset my interest area. The problem I'm having is to subset the matrix that contains my data. I've a 3250x1325 matrix of data, and a 3250x1 vector for lon and 1325x1 for lat. Does anyone has an idea how can I subset my interest area from the data matrix?
Thanks for the help.
Cheers
Joao

Réponse acceptée

Walter Roberson
Walter Roberson le 9 Mar 2012
latmatches = (lat >= LowerLatBound & lat <= UpperLatBound);
longmatches = (long >= LowerLongBound & long <= UpperLongBound);
datasubset = YourMatrix(longmatches, latmatches);
  2 commentaires
Walter Roberson
Walter Roberson le 10 Mar 2012
You say that your matrix is 3250 x 1325, and that your lon vector is 3250 x 1. That implies that the first index in to your matrix is lon. The error message you show uses lat as the first index of the matrix.
Joao
Joao le 10 Mar 2012
I'm realy sorry. Your answer is correct.
The problem was some lines above i was using meshgrid to generate a grid to plot my SST values. I manage now to subextract my study area.
Thanks very much for your help.
Best regards

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by