How to fill the grid matrix?

5 ビュー (過去 30 日間)
Lilya
Lilya 2017 年 9 月 10 日
コメント済み: Lilya 2017 年 9 月 11 日
Hi all,
I extracted the data from files sequentially. The aim is ordering the values by the grid points; in the grid file, I have n number of grid points (two vectors each has a dim of 987*1 Latitude and Longitude), which I need to fill in with my data by order. I need to read each of my longitude and latitude my files and order them as the grid points.
I mean, every hour of my data represents as one column of the big matrix. Then, you read each long and lat of the hourly file, as above, to find which position is that in the grid matrix (987 points) and fill it at that line in my matrix.
thank you for your help in advance.

採用された回答

Walter Roberson
Walter Roberson 2017 年 9 月 10 日
t = readtable('YourFileName.txt');
data = reshape( t{:,:}, 987, [], size(t,2) );
  1 件のコメント
Lilya
Lilya 2017 年 9 月 11 日
Appreciate it. Thanks

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMap Display についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by