How to position a data, in an array of coordinates?
Show older comments
How to position a data, in an array of coordinates? I want to create an array of longitude, latitude and temperature? I don't want to interpolate, just position the data.
example:
I have the data in columns
Lon =
-78 -76 -77 -76
Lat =
-29 -29 -30 -31
T =
12 8 9 9
and I want to position in an matrix, like this ¡
Lat =
-29 -29 -29
-30 -30 -30
-31 -31 -31
Lon =
-78 -77 -76
-78 -77 -76
-78 -77 -76
T =
12 NaN 8
NaN 9 NaN
NaN NaN 9
Regards Claudio
2 Comments
Walter Roberson
on 15 Oct 2012
An array such as
[Latitude, Longitude, Temperature]
with the values down the columns ?
Javier
on 15 Oct 2012
Accepted Answer
More Answers (0)
Categories
Find more on Interpolation of 2-D Selections in 3-D Grids in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!