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

1 vue (au cours des 30 derniers jours)
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

Réponses (1)

Fangjun Jiang
Fangjun Jiang le 10 Nov 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)]

Catégories

En savoir plus sur Geographic Plots dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by