Circular Indexing of Array
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I have a question that has been addressed in some capacity here: https://www.mathworks.com/matlabcentral/answers/44993-circular-indexing-of-an-array. However I am not sure how to use this approach for my array. I am clustering data in a 73 x 144 array with bwlabel. However, the data should be treated as circular (rather spherical) as it is Earth Surface data. So I want to be able to apply bwlabel such that the right side of the array is technically continued into the left side of the array. I have tried appending the array such that I tack on 10 or 15 columns on both the left and right side of the array, but that generates false clusters. I have attached an image of my problem. The top center of the image (at North Pole) the pink and light blue clusters should be the same, but are separated by bwlabel since the array begins at 0 degrees longitude and ends at 360 degrees longitude. Any suggestions would be great!
0 comentarios
Respuestas (1)
Chad Greene
el 16 de Ag. de 2018
If you have lat,lon grids corresponding to your matrix Z, try using the attached function to recenter like this:
[lat,lon,Z] = recenter(lat,lon,Z);
If your lat and lons are 1D arrays, you might need to grid them with meshgrid first by either
[lon,lat] = meshgrid(lon,lat);
or
[lat,lon] = meshgrid(lat,lon);
3 comentarios
Chad Greene
el 16 de Ag. de 2018
Is it prohibitive to triple the size of your dataset, like if
Z = peaks;
then tripling it would look like
Z3 = [Z Z Z];
After doing your analysis, you could get the middle section back, like
Z_analyzed = Z3(:,size(Z,1)+1:2*size(Z,1));
Ver también
Categorías
Más información sobre 3-D Scene Control en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!