creat a grid from xyz file
古いコメントを表示
Hi!
I have a file of X,Y,Z values (X,Y are cartesian coordinates) and Z the altitude (it's a topo-bathymetry file).
can you tell me please how to creat a grid which contains this altitudes .
thank you
回答 (1 件)
jonas
2020 年 8 月 27 日
%make a 100x100 grid
[XX,YY] = meshgrid(linspace(min(X),max(X),100),linspace(min(Y),max(Y),100))
%interpolate Z data to grid
ZZ = griddata(X,Y,Z,XX,YY)
8 件のコメント
wassim boulala
2020 年 8 月 27 日
jonas
2020 年 8 月 28 日
surf(XX, YY, ZZ)
wassim boulala
2020 年 8 月 28 日
jonas
2020 年 8 月 28 日
Probably you made a mistake, because the code works for me. Upload the data or provide some more information if you want more help.
wassim boulala
2020 年 8 月 28 日
編集済み: wassim boulala
2020 年 8 月 28 日
wassim boulala
2020 年 8 月 28 日
jonas
2020 年 8 月 28 日
Sorry, but this is waste of time. I'll respond when you ask a coherent question.
カテゴリ
ヘルプ センター および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!