Two matrices (n x 1) & (m x 1) : How to get an output matrix of size (n x m) containing pairs

1 visualización (últimos 30 días)
Hi All,
I have two matrices for latitude and longitude with the following size: Latitude (41x 1) and Longitude(81 x 1)
I need to get an output matrix of the size ((41 * 81) x 1) or ((41*81) x 2) - size is containing pairs of coordinates, so basiically first row of Latitude paired with all longitudes (one at a time), then take second row of Latitude and apply the same. (How I imagine it is done)
I would appreciate any guidance on how to perform this task.
Cheers,
NZ

Respuestas (1)

Fangjun Jiang
Fangjun Jiang el 10 de Nov. de 2021
I would not think you need to create such a matrix. That matrix simply duplicates lots of data. The truly useful and unique data are still your original data, the 41 Latitude and 81 Longitude data.
What you need is the index of your location, then you can find out the position of your location. For example
x=4;
y=5;
YourLocation=[Latitude(4), Longitude(5)]

Categorías

Más información sobre Geographic Plots en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by