How to convert a row vector into 2d matrix
3 次查看(过去 30 天)
显示 更早的评论
I have a row vector data( 1,290). Here 290 represents 290 grid points. I want to convert this into 2d matrix (lat,lon), assigning each grid point to its corresponding lat and lon. I also have lat,lon row vectors of the order (1,290).
I don't know how to create a 2d matrix of lat,lon having the value of data
1 个评论
dpb
2019-7-6
Well, you're 289x290 items short of having enough data to assign to a 290x290 data grid.
You've only got 290 points total; where they belong in a lat/lon grid is entirely dependent upon how they were collected at what points. There's no way to know how that was done (if it was done at all) from the information supplied.
回答(1 个)
KALYAN ACHARJYA
2019-7-7
编辑:KALYAN ACHARJYA
2019-7-7
As per my understanding, you have to two data
- grid_data( 1,290) represents Grid points
- lat_long(1,290) represents lat and long
You wish to combine both as lat_log values with correcponding grid points
resul=[lat_long;data]';
Result mat will 2x290
Let me know!
1 个评论
dpb
2019-7-7
编辑:dpb
2019-7-7
On re-reading the Q?, I believe I misread first time but that there are actually three vectors...in order to have both lat and long position data.
posndata=[lat;long;data].';
In this case the 2D array will be 290x3 (Kalyan has inadvertently reversed row,column in his size comment)...
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Resizing and Reshaping Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!